
    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_50e296d8e88aa14f8acb348a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971000;font-style:normal;font-weight:normal;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_e335bb747d22873319171ec3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_66d97e1b6481691956117756.woff')format("woff");}.ff3{font-family:ff3;line-height:0.700000;font-style:normal;font-weight:normal;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_83b26db3ad834c4128c3571d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.975000;font-style:normal;font-weight:normal;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_857966478ddb4e8da8e872b1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908000;font-style:normal;font-weight:normal;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_bf5454ef34923a5689682167.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030000;font-style:normal;font-weight:normal;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_855bb71091208949d1c87c46.woff')format("woff");}.ff7{font-family:ff7;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_019b59bedeff30baae5fc510.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973000;font-style:normal;font-weight: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_0d5937f0126c08e9b9fa7080.woff')format("woff");}.ff9{font-family:ff9;line-height:1.105000;font-style: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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.620000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws6{word-spacing:-16.296000px;}
.ws1{word-spacing:-13.200000px;}
.ws2{word-spacing:-10.800000px;}
.ws9{word-spacing:-3.780000px;}
.ws8{word-spacing:-1.848000px;}
.ws0{word-spacing:-0.102000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:2.052000px;}
.ws7{word-spacing:11.508000px;}
.ws5{word-spacing:589.338000px;}
._c{margin-left:-5.397000px;}
._1{margin-left:-4.369200px;}
._e{margin-left:-3.330600px;}
._2{margin-left:-2.268600px;}
._0{margin-left:-1.060800px;}
._5{width:1.214400px;}
._3{width:2.252400px;}
._9{width:3.368400px;}
._6{width:4.561200px;}
._a{width:6.363000px;}
._7{width:8.038800px;}
._8{width:9.064200px;}
._b{width:11.953200px;}
._d{width:13.372800px;}
._4{width:16.448400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(113,38,13);}
.fs6{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs1{font-size:102.000000px;}
.fs3{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:68.971800px;}
.y4d{bottom:69.066450px;}
.y3{bottom:69.230550px;}
.y27{bottom:89.976300px;}
.y4c{bottom:90.070950px;}
.y2{bottom:90.235050px;}
.y25{bottom:164.843550px;}
.y24{bottom:194.852550px;}
.y23{bottom:254.849550px;}
.y4a{bottom:282.116550px;}
.y22{bottom:284.858550px;}
.y49{bottom:312.125550px;}
.y21{bottom:314.867550px;}
.y48{bottom:342.134550px;}
.y20{bottom:344.876550px;}
.y47{bottom:372.143550px;}
.y1f{bottom:374.885550px;}
.y46{bottom:402.152550px;}
.y1e{bottom:404.894550px;}
.y45{bottom:432.161550px;}
.y1d{bottom:434.903550px;}
.y44{bottom:462.170550px;}
.y1c{bottom:464.912550px;}
.y43{bottom:492.179550px;}
.y1b{bottom:494.921550px;}
.y42{bottom:522.188550px;}
.y1a{bottom:524.930550px;}
.y41{bottom:552.197550px;}
.y59{bottom:552.218550px;}
.y19{bottom:554.939550px;}
.y40{bottom:582.206550px;}
.y58{bottom:582.227550px;}
.y3f{bottom:612.215550px;}
.y57{bottom:612.236550px;}
.y18{bottom:636.218700px;}
.y3e{bottom:642.224550px;}
.y56{bottom:642.245550px;}
.y17{bottom:654.214200px;}
.y3d{bottom:672.233550px;}
.y55{bottom:672.254550px;}
.y16{bottom:693.472200px;}
.y3c{bottom:702.242550px;}
.y54{bottom:702.263550px;}
.y15{bottom:711.467700px;}
.y14{bottom:729.463200px;}
.y3b{bottom:732.251550px;}
.y53{bottom:732.272550px;}
.y13{bottom:751.711200px;}
.y3a{bottom:762.260550px;}
.y39{bottom:792.269550px;}
.y38{bottom:822.278550px;}
.y12{bottom:842.009700px;}
.y52{bottom:852.287550px;}
.y11{bottom:867.517200px;}
.y37{bottom:882.275550px;}
.y51{bottom:882.296550px;}
.y10{bottom:893.009700px;}
.y36{bottom:912.284550px;}
.y50{bottom:912.305550px;}
.yf{bottom:918.509700px;}
.y35{bottom:942.293550px;}
.y4f{bottom:942.314550px;}
.ye{bottom:950.413650px;}
.y34{bottom:972.302550px;}
.y4e{bottom:972.323550px;}
.yd{bottom:975.921150px;}
.yc{bottom:1001.413650px;}
.y33{bottom:1002.311550px;}
.yb{bottom:1026.913650px;}
.y32{bottom:1032.320550px;}
.y31{bottom:1062.329550px;}
.y30{bottom:1092.338550px;}
.y2f{bottom:1122.347550px;}
.ya{bottom:1122.597150px;}
.y9{bottom:1149.597150px;}
.y2e{bottom:1152.356550px;}
.y8{bottom:1176.597150px;}
.y2d{bottom:1182.365550px;}
.y2c{bottom:1212.374550px;}
.y7{bottom:1223.395950px;}
.y2b{bottom:1242.383550px;}
.y6{bottom:1271.995950px;}
.y2a{bottom:1272.392550px;}
.y29{bottom:1302.401550px;}
.y5{bottom:1320.595950px;}
.y4{bottom:1377.700950px;}
.y1{bottom:1382.433150px;}
.y26{bottom:1433.787450px;}
.y4b{bottom:1433.952750px;}
.h8{height:41.202000px;}
.h7{height:45.360000px;}
.h3{height:50.358000px;}
.hc{height:50.424000px;}
.h1{height:54.936000px;}
.ha{height:59.472000px;}
.h6{height:60.450000px;}
.h5{height:63.720000px;}
.h9{height:64.176000px;}
.h2{height:71.502000px;}
.hb{height:75.264000px;}
.h4{height:125.550000px;}
.h0{height:1536.000000px;}
.w0{width:1152.000000px;}
.x0{left:0.000000px;}
.x9{left:11.946150px;}
.x2{left:191.338650px;}
.x7{left:736.493550px;}
.x4{left:744.845400px;}
.x3{left:771.027300px;}
.x6{left:792.974250px;}
.x8{left:825.084900px;}
.x5{left:831.948900px;}
.x1{left:1111.596150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-14.485333pt;}
.ws1{word-spacing:-11.733333pt;}
.ws2{word-spacing:-9.600000pt;}
.ws9{word-spacing:-3.360000pt;}
.ws8{word-spacing:-1.642667pt;}
.ws0{word-spacing:-0.090667pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:1.824000pt;}
.ws7{word-spacing:10.229333pt;}
.ws5{word-spacing:523.856000pt;}
._c{margin-left:-4.797333pt;}
._1{margin-left:-3.883733pt;}
._e{margin-left:-2.960533pt;}
._2{margin-left:-2.016533pt;}
._0{margin-left:-0.942933pt;}
._5{width:1.079467pt;}
._3{width:2.002133pt;}
._9{width:2.994133pt;}
._6{width:4.054400pt;}
._a{width:5.656000pt;}
._7{width:7.145600pt;}
._8{width:8.057067pt;}
._b{width:10.625067pt;}
._d{width:11.886933pt;}
._4{width:14.620800pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs1{font-size:90.666667pt;}
.fs3{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:61.308267pt;}
.y4d{bottom:61.392400pt;}
.y3{bottom:61.538267pt;}
.y27{bottom:79.978933pt;}
.y4c{bottom:80.063067pt;}
.y2{bottom:80.208933pt;}
.y25{bottom:146.527600pt;}
.y24{bottom:173.202267pt;}
.y23{bottom:226.532933pt;}
.y4a{bottom:250.770267pt;}
.y22{bottom:253.207600pt;}
.y49{bottom:277.444933pt;}
.y21{bottom:279.882267pt;}
.y48{bottom:304.119600pt;}
.y20{bottom:306.556933pt;}
.y47{bottom:330.794267pt;}
.y1f{bottom:333.231600pt;}
.y46{bottom:357.468933pt;}
.y1e{bottom:359.906267pt;}
.y45{bottom:384.143600pt;}
.y1d{bottom:386.580933pt;}
.y44{bottom:410.818267pt;}
.y1c{bottom:413.255600pt;}
.y43{bottom:437.492933pt;}
.y1b{bottom:439.930267pt;}
.y42{bottom:464.167600pt;}
.y1a{bottom:466.604933pt;}
.y41{bottom:490.842267pt;}
.y59{bottom:490.860933pt;}
.y19{bottom:493.279600pt;}
.y40{bottom:517.516933pt;}
.y58{bottom:517.535600pt;}
.y3f{bottom:544.191600pt;}
.y57{bottom:544.210267pt;}
.y18{bottom:565.527733pt;}
.y3e{bottom:570.866267pt;}
.y56{bottom:570.884933pt;}
.y17{bottom:581.523733pt;}
.y3d{bottom:597.540933pt;}
.y55{bottom:597.559600pt;}
.y16{bottom:616.419733pt;}
.y3c{bottom:624.215600pt;}
.y54{bottom:624.234267pt;}
.y15{bottom:632.415733pt;}
.y14{bottom:648.411733pt;}
.y3b{bottom:650.890267pt;}
.y53{bottom:650.908933pt;}
.y13{bottom:668.187733pt;}
.y3a{bottom:677.564933pt;}
.y39{bottom:704.239600pt;}
.y38{bottom:730.914267pt;}
.y12{bottom:748.453067pt;}
.y52{bottom:757.588933pt;}
.y11{bottom:771.126400pt;}
.y37{bottom:784.244933pt;}
.y51{bottom:784.263600pt;}
.y10{bottom:793.786400pt;}
.y36{bottom:810.919600pt;}
.y50{bottom:810.938267pt;}
.yf{bottom:816.453067pt;}
.y35{bottom:837.594267pt;}
.y4f{bottom:837.612933pt;}
.ye{bottom:844.812133pt;}
.y34{bottom:864.268933pt;}
.y4e{bottom:864.287600pt;}
.yd{bottom:867.485467pt;}
.yc{bottom:890.145467pt;}
.y33{bottom:890.943600pt;}
.yb{bottom:912.812133pt;}
.y32{bottom:917.618267pt;}
.y31{bottom:944.292933pt;}
.y30{bottom:970.967600pt;}
.y2f{bottom:997.642267pt;}
.ya{bottom:997.864133pt;}
.y9{bottom:1021.864133pt;}
.y2e{bottom:1024.316933pt;}
.y8{bottom:1045.864133pt;}
.y2d{bottom:1050.991600pt;}
.y2c{bottom:1077.666267pt;}
.y7{bottom:1087.463067pt;}
.y2b{bottom:1104.340933pt;}
.y6{bottom:1130.663067pt;}
.y2a{bottom:1131.015600pt;}
.y29{bottom:1157.690267pt;}
.y5{bottom:1173.863067pt;}
.y4{bottom:1224.623067pt;}
.y1{bottom:1228.829467pt;}
.y26{bottom:1274.477733pt;}
.y4b{bottom:1274.624667pt;}
.h8{height:36.624000pt;}
.h7{height:40.320000pt;}
.h3{height:44.762667pt;}
.hc{height:44.821333pt;}
.h1{height:48.832000pt;}
.ha{height:52.864000pt;}
.h6{height:53.733333pt;}
.h5{height:56.640000pt;}
.h9{height:57.045333pt;}
.h2{height:63.557333pt;}
.hb{height:66.901333pt;}
.h4{height:111.600000pt;}
.h0{height:1365.333333pt;}
.w0{width:1024.000000pt;}
.x0{left:0.000000pt;}
.x9{left:10.618800pt;}
.x2{left:170.078800pt;}
.x7{left:654.660933pt;}
.x4{left:662.084800pt;}
.x3{left:685.357600pt;}
.x6{left:704.866000pt;}
.x8{left:733.408800pt;}
.x5{left:739.510133pt;}
.x1{left:988.085467pt;}
}

