
    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_421d939804360cf66852eaae.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_5607e7dddd6a170317ffbe1d.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_2bdc99719e675add15e30d22.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_ffd7a8979a56b86aade201a8.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_f907113e6eda0b9ce691a6d0.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_fef5e745e81aec0cf24efc7e.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_f78b18d2b1594ba714fdfc9b.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_a036fc31a398f142abd57b1d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_18fbf26c34fe207990834459.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_c5eddc82b912d391c114e52a.woff')format("woff");}.ffa{font-family:ffa;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);}
.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;}
.v1{vertical-align:21.978000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001356px;}
.ls2{letter-spacing:4.789572px;}
.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;}
}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.520000px;}
.ws1{word-spacing:-8.696028px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.066000px;}
.wsc{word-spacing:0.132000px;}
.ws4{word-spacing:2.244000px;}
.ws9{word-spacing:2.442000px;}
.wsa{word-spacing:3.102000px;}
.ws7{word-spacing:3.696000px;}
.ws5{word-spacing:3.828000px;}
.ws6{word-spacing:4.620000px;}
.wsb{word-spacing:12.738000px;}
._1{margin-left:-10.650600px;}
._3{margin-left:-9.108000px;}
._8{margin-left:-7.153200px;}
._c{margin-left:-4.336200px;}
._2{margin-left:-2.538000px;}
._0{margin-left:-1.258200px;}
._7{width:1.917600px;}
._4{width:3.352800px;}
._5{width:4.396800px;}
._6{width:6.184200px;}
._d{width:7.458600px;}
._f{width:8.470800px;}
._b{width:9.707400px;}
._9{width:10.819200px;}
._a{width:12.052200px;}
._e{width:15.972000px;}
._11{width:17.728800px;}
._10{width:19.262400px;}
.fc2{color:rgb(104,125,159);}
.fc1{color:rgb(32,66,118);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.457100px;}
.y41{bottom:104.734500px;}
.y40{bottom:127.240500px;}
.y5f{bottom:151.353150px;}
.y20{bottom:151.856850px;}
.y3f{bottom:162.501000px;}
.y5e{bottom:173.859150px;}
.y1f{bottom:174.362850px;}
.y3e{bottom:185.007000px;}
.y5d{bottom:196.365150px;}
.y1e{bottom:196.779900px;}
.y3d{bottom:207.513000px;}
.y5c{bottom:218.871150px;}
.y1d{bottom:219.285900px;}
.y3c{bottom:230.019000px;}
.y3b{bottom:252.525000px;}
.y5b{bottom:254.131650px;}
.y1c{bottom:254.546400px;}
.y3a{bottom:275.031000px;}
.y5a{bottom:276.637650px;}
.y1b{bottom:277.052400px;}
.y39{bottom:297.537000px;}
.y59{bottom:299.143650px;}
.y1a{bottom:299.558400px;}
.y58{bottom:321.649650px;}
.y38{bottom:332.797500px;}
.y19{bottom:334.818900px;}
.y37{bottom:355.303500px;}
.y57{bottom:356.910150px;}
.y18{bottom:357.324900px;}
.y36{bottom:377.809500px;}
.y17{bottom:379.830900px;}
.y35{bottom:400.208850px;}
.y56{bottom:400.668150px;}
.y16{bottom:402.336900px;}
.y34{bottom:422.714850px;}
.y55{bottom:423.174150px;}
.y15{bottom:437.597400px;}
.y33{bottom:445.220850px;}
.y54{bottom:445.680150px;}
.y14{bottom:460.103400px;}
.y53{bottom:468.186150px;}
.y32{bottom:480.481350px;}
.y13{bottom:482.609400px;}
.y31{bottom:502.987350px;}
.y52{bottom:503.446650px;}
.y12{bottom:517.869900px;}
.y30{bottom:525.493350px;}
.y51{bottom:525.952650px;}
.y11{bottom:540.375900px;}
.y2f{bottom:547.999350px;}
.y50{bottom:561.213150px;}
.y2e{bottom:570.505350px;}
.y10{bottom:575.636400px;}
.y4f{bottom:583.719150px;}
.y68{bottom:590.467650px;}
.y2d{bottom:593.011350px;}
.yf{bottom:598.142400px;}
.y4e{bottom:606.225150px;}
.y2c{bottom:615.517350px;}
.ye{bottom:620.624550px;}
.y67{bottom:625.728150px;}
.y4d{bottom:628.731150px;}
.yd{bottom:643.130550px;}
.y2b{bottom:650.777850px;}
.y66{bottom:660.988650px;}
.y4c{bottom:663.991650px;}
.yc{bottom:665.636550px;}
.y65{bottom:683.494650px;}
.y2a{bottom:694.535850px;}
.yb{bottom:700.897050px;}
.y4b{bottom:707.749650px;}
.y29{bottom:717.041850px;}
.y64{bottom:718.755150px;}
.y4a{bottom:730.255650px;}
.y28{bottom:739.547850px;}
.y63{bottom:741.261150px;}
.ya{bottom:744.655050px;}
.y49{bottom:752.761650px;}
.y27{bottom:774.808350px;}
.y48{bottom:775.267650px;}
.y62{bottom:776.521650px;}
.y9{bottom:779.915550px;}
.y26{bottom:797.314350px;}
.y47{bottom:797.773650px;}
.y61{bottom:799.027650px;}
.y8{bottom:815.176050px;}
.y25{bottom:819.820350px;}
.y46{bottom:833.034150px;}
.y60{bottom:834.288150px;}
.y24{bottom:842.326350px;}
.y7{bottom:850.431900px;}
.y45{bottom:855.540150px;}
.y23{bottom:864.832350px;}
.y6{bottom:872.931900px;}
.y44{bottom:878.046150px;}
.y22{bottom:887.338350px;}
.y5{bottom:895.431900px;}
.y43{bottom:900.552150px;}
.y4{bottom:917.931900px;}
.y21{bottom:922.598850px;}
.y42{bottom:923.058150px;}
.y3{bottom:951.486000px;}
.y2{bottom:967.686000px;}
.h3{height:38.522461px;}
.h2{height:45.457031px;}
.h6{height:47.083008px;}
.h5{height:54.430664px;}
.h7{height:55.558594px;}
.h9{height:55.606594px;}
.ha{height:55.985194px;}
.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;}
.xb{left:85.032300px;}
.x2{left:92.930550px;}
.xa{left:102.043800px;}
.x5{left:116.149800px;}
.xc{left:119.396550px;}
.x6{left:123.507300px;}
.x4{left:128.007300px;}
.x9{left:155.536800px;}
.x8{left:215.194650px;}
.x7{left:299.277300px;}
.x1{left:351.153900px;}
.x3{left:496.378050px;}
.xd{left:500.312550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001205pt;}
.ls2{letter-spacing:4.257397pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-12.906667pt;}
.ws1{word-spacing:-7.729803pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.058667pt;}
.wsc{word-spacing:0.117333pt;}
.ws4{word-spacing:1.994667pt;}
.ws9{word-spacing:2.170667pt;}
.wsa{word-spacing:2.757333pt;}
.ws7{word-spacing:3.285333pt;}
.ws5{word-spacing:3.402667pt;}
.ws6{word-spacing:4.106667pt;}
.wsb{word-spacing:11.322667pt;}
._1{margin-left:-9.467200pt;}
._3{margin-left:-8.096000pt;}
._8{margin-left:-6.358400pt;}
._c{margin-left:-3.854400pt;}
._2{margin-left:-2.256000pt;}
._0{margin-left:-1.118400pt;}
._7{width:1.704533pt;}
._4{width:2.980267pt;}
._5{width:3.908267pt;}
._6{width:5.497067pt;}
._d{width:6.629867pt;}
._f{width:7.529600pt;}
._b{width:8.628800pt;}
._9{width:9.617067pt;}
._a{width:10.713067pt;}
._e{width:14.197333pt;}
._11{width:15.758933pt;}
._10{width:17.122133pt;}
.fs3{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.295200pt;}
.y41{bottom:93.097333pt;}
.y40{bottom:113.102667pt;}
.y5f{bottom:134.536133pt;}
.y20{bottom:134.983867pt;}
.y3f{bottom:144.445333pt;}
.y5e{bottom:154.541467pt;}
.y1f{bottom:154.989200pt;}
.y3e{bottom:164.450667pt;}
.y5d{bottom:174.546800pt;}
.y1e{bottom:174.915467pt;}
.y3d{bottom:184.456000pt;}
.y5c{bottom:194.552133pt;}
.y1d{bottom:194.920800pt;}
.y3c{bottom:204.461333pt;}
.y3b{bottom:224.466667pt;}
.y5b{bottom:225.894800pt;}
.y1c{bottom:226.263467pt;}
.y3a{bottom:244.472000pt;}
.y5a{bottom:245.900133pt;}
.y1b{bottom:246.268800pt;}
.y39{bottom:264.477333pt;}
.y59{bottom:265.905467pt;}
.y1a{bottom:266.274133pt;}
.y58{bottom:285.910800pt;}
.y38{bottom:295.820000pt;}
.y19{bottom:297.616800pt;}
.y37{bottom:315.825333pt;}
.y57{bottom:317.253467pt;}
.y18{bottom:317.622133pt;}
.y36{bottom:335.830667pt;}
.y17{bottom:337.627467pt;}
.y35{bottom:355.741200pt;}
.y56{bottom:356.149467pt;}
.y16{bottom:357.632800pt;}
.y34{bottom:375.746533pt;}
.y55{bottom:376.154800pt;}
.y15{bottom:388.975467pt;}
.y33{bottom:395.751867pt;}
.y54{bottom:396.160133pt;}
.y14{bottom:408.980800pt;}
.y53{bottom:416.165467pt;}
.y32{bottom:427.094533pt;}
.y13{bottom:428.986133pt;}
.y31{bottom:447.099867pt;}
.y52{bottom:447.508133pt;}
.y12{bottom:460.328800pt;}
.y30{bottom:467.105200pt;}
.y51{bottom:467.513467pt;}
.y11{bottom:480.334133pt;}
.y2f{bottom:487.110533pt;}
.y50{bottom:498.856133pt;}
.y2e{bottom:507.115867pt;}
.y10{bottom:511.676800pt;}
.y4f{bottom:518.861467pt;}
.y68{bottom:524.860133pt;}
.y2d{bottom:527.121200pt;}
.yf{bottom:531.682133pt;}
.y4e{bottom:538.866800pt;}
.y2c{bottom:547.126533pt;}
.ye{bottom:551.666267pt;}
.y67{bottom:556.202800pt;}
.y4d{bottom:558.872133pt;}
.yd{bottom:571.671600pt;}
.y2b{bottom:578.469200pt;}
.y66{bottom:587.545467pt;}
.y4c{bottom:590.214800pt;}
.yc{bottom:591.676933pt;}
.y65{bottom:607.550800pt;}
.y2a{bottom:617.365200pt;}
.yb{bottom:623.019600pt;}
.y4b{bottom:629.110800pt;}
.y29{bottom:637.370533pt;}
.y64{bottom:638.893467pt;}
.y4a{bottom:649.116133pt;}
.y28{bottom:657.375867pt;}
.y63{bottom:658.898800pt;}
.ya{bottom:661.915600pt;}
.y49{bottom:669.121467pt;}
.y27{bottom:688.718533pt;}
.y48{bottom:689.126800pt;}
.y62{bottom:690.241467pt;}
.y9{bottom:693.258267pt;}
.y26{bottom:708.723867pt;}
.y47{bottom:709.132133pt;}
.y61{bottom:710.246800pt;}
.y8{bottom:724.600933pt;}
.y25{bottom:728.729200pt;}
.y46{bottom:740.474800pt;}
.y60{bottom:741.589467pt;}
.y24{bottom:748.734533pt;}
.y7{bottom:755.939467pt;}
.y45{bottom:760.480133pt;}
.y23{bottom:768.739867pt;}
.y6{bottom:775.939467pt;}
.y44{bottom:780.485467pt;}
.y22{bottom:788.745200pt;}
.y5{bottom:795.939467pt;}
.y43{bottom:800.490800pt;}
.y4{bottom:815.939467pt;}
.y21{bottom:820.087867pt;}
.y42{bottom:820.496133pt;}
.y3{bottom:845.765333pt;}
.y2{bottom:860.165333pt;}
.h3{height:34.242188pt;}
.h2{height:40.406250pt;}
.h6{height:41.851562pt;}
.h5{height:48.382812pt;}
.h7{height:49.385417pt;}
.h9{height:49.428083pt;}
.ha{height:49.764617pt;}
.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;}
.xb{left:75.584267pt;}
.x2{left:82.604933pt;}
.xa{left:90.705600pt;}
.x5{left:103.244267pt;}
.xc{left:106.130267pt;}
.x6{left:109.784267pt;}
.x4{left:113.784267pt;}
.x9{left:138.254933pt;}
.x8{left:191.284133pt;}
.x7{left:266.024267pt;}
.x1{left:312.136800pt;}
.x3{left:441.224933pt;}
.xd{left:444.722267pt;}
}

