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

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_3a8ee44b96f2af774b1c9346.woff')format("woff");}.ff1{font-family:ff1;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_458df70a47ea256ca21e5413.woff')format("woff");}.ff2{font-family:ff2;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_aaa8e77cb53e8dee58cae7d8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_353d54ed3a71b11b649eced8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0cf718aa593dc2d5c4912ef.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_91827500f9dd55698288686c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dd132b661012d7d7ceaf1459.woff')format("woff");}.ff7{font-family:ff7;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d58b1cbd793068eeb8c44025.woff')format("woff");}.ff8{font-family:ff8;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_78dcf09097b052a363b139e1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_60990d78a261087c0f5e28c3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_97319cdd61423f5ac4e2eb3a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a86b3b35b8acbba21df5d273.woff')format("woff");}.ffc{font-family:ffc;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.913800px;}
.v3{vertical-align:-4.512000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001356px;}
.ls3{letter-spacing:0.015276px;}
.ls0{letter-spacing:0.900000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.520000px;}
.wsa{word-spacing:-10.848000px;}
.ws6{word-spacing:-8.696028px;}
.ws4{word-spacing:-6.270000px;}
.ws9{word-spacing:-4.356000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.396000px;}
.ws3{word-spacing:4.224000px;}
.ws2{word-spacing:4.818000px;}
.ws5{word-spacing:6.138000px;}
.wsb{word-spacing:19.800000px;}
._4{margin-left:-5.013000px;}
._7{margin-left:-3.921600px;}
._1{margin-left:-2.817000px;}
._0{margin-left:-1.728000px;}
._2{width:1.405800px;}
._5{width:3.383400px;}
._6{width:4.554600px;}
._3{width:5.603400px;}
._8{width:6.864000px;}
._d{width:8.032200px;}
._a{width:9.596400px;}
._9{width:10.923000px;}
._1c{width:12.150600px;}
._1d{width:13.629000px;}
._b{width:16.563600px;}
._c{width:17.767986px;}
._18{width:19.285200px;}
._1b{width:20.627400px;}
._1a{width:26.358000px;}
._16{width:28.060200px;}
._17{width:29.667000px;}
._19{width:32.517000px;}
._14{width:137.952000px;}
._11{width:150.144000px;}
._e{width:160.752000px;}
._12{width:194.035200px;}
._15{width:201.404400px;}
._f{width:204.657600px;}
._13{width:216.589200px;}
._10{width:228.747000px;}
.fc3{color:rgb(148,162,187);}
.fc2{color:rgb(104,125,159);}
.fc1{color:rgb(32,66,118);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.478000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.457100px;}
.y55{bottom:110.146500px;}
.y20{bottom:116.488050px;}
.y54{bottom:134.431500px;}
.y69{bottom:136.791150px;}
.y1f{bottom:138.994050px;}
.y53{bottom:158.437500px;}
.y68{bottom:159.297150px;}
.y1e{bottom:161.500050px;}
.y67{bottom:181.803150px;}
.y52{bottom:182.440200px;}
.y1d{bottom:184.006050px;}
.y66{bottom:204.309150px;}
.y51{bottom:205.324200px;}
.y1c{bottom:206.512050px;}
.y3c{bottom:213.299700px;}
.y50{bottom:220.324200px;}
.y1b{bottom:237.515550px;}
.y65{bottom:239.569650px;}
.y4f{bottom:246.485700px;}
.y3b{bottom:248.555550px;}
.y4e{bottom:264.485700px;}
.y1a{bottom:272.776050px;}
.y3a{bottom:279.299400px;}
.y64{bottom:283.327650px;}
.y4d{bottom:295.224000px;}
.y39{bottom:301.805400px;}
.y63{bottom:305.833650px;}
.y19{bottom:316.534050px;}
.y4c{bottom:317.730000px;}
.y38{bottom:324.305400px;}
.y18{bottom:339.040050px;}
.y4b{bottom:340.236000px;}
.y62{bottom:341.094150px;}
.y37{bottom:346.795350px;}
.y17{bottom:361.546050px;}
.y4a{bottom:362.742000px;}
.y36{bottom:369.301350px;}
.y16{bottom:384.052050px;}
.y61{bottom:384.852150px;}
.y49{bottom:393.745500px;}
.y35{bottom:400.304850px;}
.y15{bottom:406.558050px;}
.y60{bottom:407.358150px;}
.y48{bottom:429.001350px;}
.y14{bottom:429.064050px;}
.y5f{bottom:429.864150px;}
.y34{bottom:435.565350px;}
.y47{bottom:447.001350px;}
.y13{bottom:451.570050px;}
.y5e{bottom:452.370150px;}
.y33{bottom:458.061150px;}
.y46{bottom:465.001350px;}
.y12{bottom:474.076050px;}
.y5d{bottom:474.876150px;}
.y32{bottom:480.567150px;}
.y11{bottom:496.582050px;}
.y5c{bottom:510.136650px;}
.y31{bottom:511.570650px;}
.y10{bottom:519.088050px;}
.y30{bottom:546.761850px;}
.y5b{bottom:553.896450px;}
.yf{bottom:554.348550px;}
.y2f{bottom:569.267850px;}
.y5a{bottom:571.896450px;}
.y59{bottom:589.896450px;}
.y2e{bottom:591.773850px;}
.ye{bottom:598.106550px;}
.y2d{bottom:614.279850px;}
.yd{bottom:620.612550px;}
.y2c{bottom:636.785850px;}
.yc{bottom:643.118550px;}
.yb{bottom:665.624550px;}
.y2b{bottom:667.789350px;}
.ya{bottom:688.130550px;}
.y45{bottom:698.792850px;}
.y2a{bottom:703.049850px;}
.y9{bottom:710.636550px;}
.y44{bottom:721.298850px;}
.y29{bottom:725.555850px;}
.y43{bottom:743.804850px;}
.y8{bottom:745.897050px;}
.y28{bottom:748.061850px;}
.y42{bottom:766.310850px;}
.y27{bottom:770.567850px;}
.y41{bottom:788.816850px;}
.y7{bottom:789.655050px;}
.y26{bottom:793.073850px;}
.y6f{bottom:797.773650px;}
.y40{bottom:811.322850px;}
.y25{bottom:815.579850px;}
.y6e{bottom:820.279650px;}
.y58{bottom:824.077350px;}
.y6{bottom:824.915550px;}
.y3f{bottom:833.828850px;}
.y24{bottom:838.085850px;}
.y57{bottom:846.583350px;}
.y6d{bottom:855.540150px;}
.y3e{bottom:856.334850px;}
.y5{bottom:860.176050px;}
.y23{bottom:860.591850px;}
.y56{bottom:869.089350px;}
.y6c{bottom:878.046150px;}
.y3d{bottom:887.338350px;}
.y22{bottom:891.595350px;}
.y4{bottom:895.431900px;}
.y6b{bottom:900.552150px;}
.y3{bottom:917.931900px;}
.y21{bottom:922.598850px;}
.y6a{bottom:923.058150px;}
.y2{bottom:967.686000px;}
.h3{height:38.522461px;}
.h10{height:39.585938px;}
.h2{height:45.457031px;}
.h12{height:46.007812px;}
.h11{height:46.020412px;}
.ha{height:46.470703px;}
.h6{height:47.083008px;}
.h9{height:47.534180px;}
.he{height:49.482422px;}
.hf{height:50.507812px;}
.h5{height:54.430664px;}
.h7{height:55.558594px;}
.hd{height:55.582594px;}
.hb{height:55.599394px;}
.hc{height:55.622794px;}
.h8{height:57.943359px;}
.h4{height:79.013672px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:85.033950px;}
.x8{left:102.045450px;}
.x10{left:106.655400px;}
.x4{left:108.335100px;}
.x18{left:109.336050px;}
.xa{left:119.056950px;}
.x19{left:127.556250px;}
.xb{left:136.066650px;}
.x5{left:140.400900px;}
.x3{left:145.572600px;}
.x6{left:162.055950px;}
.x17{left:184.246800px;}
.x16{left:187.279800px;}
.x7{left:207.397950px;}
.xc{left:227.739300px;}
.x2{left:234.700350px;}
.x11{left:262.879800px;}
.xf{left:277.981500px;}
.xe{left:323.896500px;}
.x12{left:345.127800px;}
.x1{left:354.575100px;}
.x13{left:372.631800px;}
.xd{left:429.354150px;}
.x14{left:467.059800px;}
.x15{left:469.927800px;}
@media print{
.v2{vertical-align:-19.478933pt;}
.v3{vertical-align:-4.010667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001205pt;}
.ls3{letter-spacing:0.013579pt;}
.ls0{letter-spacing:0.800000pt;}
.ws7{word-spacing:-13.258667pt;}
.ws0{word-spacing:-12.906667pt;}
.wsa{word-spacing:-9.642667pt;}
.ws6{word-spacing:-7.729803pt;}
.ws4{word-spacing:-5.573333pt;}
.ws9{word-spacing:-3.872000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.352000pt;}
.ws3{word-spacing:3.754667pt;}
.ws2{word-spacing:4.282667pt;}
.ws5{word-spacing:5.456000pt;}
.wsb{word-spacing:17.600000pt;}
._4{margin-left:-4.456000pt;}
._7{margin-left:-3.485867pt;}
._1{margin-left:-2.504000pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.249600pt;}
._5{width:3.007467pt;}
._6{width:4.048533pt;}
._3{width:4.980800pt;}
._8{width:6.101333pt;}
._d{width:7.139733pt;}
._a{width:8.530133pt;}
._9{width:9.709333pt;}
._1c{width:10.800533pt;}
._1d{width:12.114667pt;}
._b{width:14.723200pt;}
._c{width:15.793765pt;}
._18{width:17.142400pt;}
._1b{width:18.335467pt;}
._1a{width:23.429333pt;}
._16{width:24.942400pt;}
._17{width:26.370667pt;}
._19{width:28.904000pt;}
._14{width:122.624000pt;}
._11{width:133.461333pt;}
._e{width:142.890667pt;}
._12{width:172.475733pt;}
._15{width:179.026133pt;}
._f{width:181.917867pt;}
._13{width:192.523733pt;}
._10{width:203.330667pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.295200pt;}
.y55{bottom:97.908000pt;}
.y20{bottom:103.544933pt;}
.y54{bottom:119.494667pt;}
.y69{bottom:121.592133pt;}
.y1f{bottom:123.550267pt;}
.y53{bottom:140.833333pt;}
.y68{bottom:141.597467pt;}
.y1e{bottom:143.555600pt;}
.y67{bottom:161.602800pt;}
.y52{bottom:162.169067pt;}
.y1d{bottom:163.560933pt;}
.y66{bottom:181.608133pt;}
.y51{bottom:182.510400pt;}
.y1c{bottom:183.566267pt;}
.y3c{bottom:189.599733pt;}
.y50{bottom:195.843733pt;}
.y1b{bottom:211.124933pt;}
.y65{bottom:212.950800pt;}
.y4f{bottom:219.098400pt;}
.y3b{bottom:220.938267pt;}
.y4e{bottom:235.098400pt;}
.y1a{bottom:242.467600pt;}
.y3a{bottom:248.266133pt;}
.y64{bottom:251.846800pt;}
.y4d{bottom:262.421333pt;}
.y39{bottom:268.271467pt;}
.y63{bottom:271.852133pt;}
.y19{bottom:281.363600pt;}
.y4c{bottom:282.426667pt;}
.y38{bottom:288.271467pt;}
.y18{bottom:301.368933pt;}
.y4b{bottom:302.432000pt;}
.y62{bottom:303.194800pt;}
.y37{bottom:308.262533pt;}
.y17{bottom:321.374267pt;}
.y4a{bottom:322.437333pt;}
.y36{bottom:328.267867pt;}
.y16{bottom:341.379600pt;}
.y61{bottom:342.090800pt;}
.y49{bottom:349.996000pt;}
.y35{bottom:355.826533pt;}
.y15{bottom:361.384933pt;}
.y60{bottom:362.096133pt;}
.y48{bottom:381.334533pt;}
.y14{bottom:381.390267pt;}
.y5f{bottom:382.101467pt;}
.y34{bottom:387.169200pt;}
.y47{bottom:397.334533pt;}
.y13{bottom:401.395600pt;}
.y5e{bottom:402.106800pt;}
.y33{bottom:407.165467pt;}
.y46{bottom:413.334533pt;}
.y12{bottom:421.400933pt;}
.y5d{bottom:422.112133pt;}
.y32{bottom:427.170800pt;}
.y11{bottom:441.406267pt;}
.y5c{bottom:453.454800pt;}
.y31{bottom:454.729467pt;}
.y10{bottom:461.411600pt;}
.y30{bottom:486.010533pt;}
.y5b{bottom:492.352400pt;}
.yf{bottom:492.754267pt;}
.y2f{bottom:506.015867pt;}
.y5a{bottom:508.352400pt;}
.y59{bottom:524.352400pt;}
.y2e{bottom:526.021200pt;}
.ye{bottom:531.650267pt;}
.y2d{bottom:546.026533pt;}
.yd{bottom:551.655600pt;}
.y2c{bottom:566.031867pt;}
.yc{bottom:571.660933pt;}
.yb{bottom:591.666267pt;}
.y2b{bottom:593.590533pt;}
.ya{bottom:611.671600pt;}
.y45{bottom:621.149200pt;}
.y2a{bottom:624.933200pt;}
.y9{bottom:631.676933pt;}
.y44{bottom:641.154533pt;}
.y29{bottom:644.938533pt;}
.y43{bottom:661.159867pt;}
.y8{bottom:663.019600pt;}
.y28{bottom:664.943867pt;}
.y42{bottom:681.165200pt;}
.y27{bottom:684.949200pt;}
.y41{bottom:701.170533pt;}
.y7{bottom:701.915600pt;}
.y26{bottom:704.954533pt;}
.y6f{bottom:709.132133pt;}
.y40{bottom:721.175867pt;}
.y25{bottom:724.959867pt;}
.y6e{bottom:729.137467pt;}
.y58{bottom:732.513200pt;}
.y6{bottom:733.258267pt;}
.y3f{bottom:741.181200pt;}
.y24{bottom:744.965200pt;}
.y57{bottom:752.518533pt;}
.y6d{bottom:760.480133pt;}
.y3e{bottom:761.186533pt;}
.y5{bottom:764.600933pt;}
.y23{bottom:764.970533pt;}
.y56{bottom:772.523867pt;}
.y6c{bottom:780.485467pt;}
.y3d{bottom:788.745200pt;}
.y22{bottom:792.529200pt;}
.y4{bottom:795.939467pt;}
.y6b{bottom:800.490800pt;}
.y3{bottom:815.939467pt;}
.y21{bottom:820.087867pt;}
.y6a{bottom:820.496133pt;}
.y2{bottom:860.165333pt;}
.h3{height:34.242188pt;}
.h10{height:35.187500pt;}
.h2{height:40.406250pt;}
.h12{height:40.895833pt;}
.h11{height:40.907033pt;}
.ha{height:41.307292pt;}
.h6{height:41.851562pt;}
.h9{height:42.252604pt;}
.he{height:43.984375pt;}
.hf{height:44.895833pt;}
.h5{height:48.382812pt;}
.h7{height:49.385417pt;}
.hd{height:49.406750pt;}
.hb{height:49.421683pt;}
.hc{height:49.442483pt;}
.h8{height:51.505208pt;}
.h4{height:70.234375pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:75.585733pt;}
.x8{left:90.707067pt;}
.x10{left:94.804800pt;}
.x4{left:96.297867pt;}
.x18{left:97.187600pt;}
.xa{left:105.828400pt;}
.x19{left:113.383333pt;}
.xb{left:120.948133pt;}
.x5{left:124.800800pt;}
.x3{left:129.397867pt;}
.x6{left:144.049733pt;}
.x17{left:163.774933pt;}
.x16{left:166.470933pt;}
.x7{left:184.353733pt;}
.xc{left:202.434933pt;}
.x2{left:208.622533pt;}
.x11{left:233.670933pt;}
.xf{left:247.094667pt;}
.xe{left:287.908000pt;}
.x12{left:306.780267pt;}
.x1{left:315.177867pt;}
.x13{left:331.228267pt;}
.xd{left:381.648133pt;}
.x14{left:415.164267pt;}
.x15{left:417.713600pt;}
}

