
    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_96ae979c7b26e93aff53656d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091309;font-style:normal;font-weight:normal;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_b6dea221c7a30cf27d30081f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;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_92864376fc2585056d93de78.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight:normal;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_b08f9855be998b3d49364611.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;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_f915844fb74df3bd4ae2e9f1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;font-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{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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{transform:matrix(0.577520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577520,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-14.250000px;}
.ls12{letter-spacing:-1.416000px;}
.lsd{letter-spacing:-1.140000px;}
.ls10{letter-spacing:-0.920400px;}
.ls11{letter-spacing:-0.849600px;}
.ls6{letter-spacing:-0.778800px;}
.lsc{letter-spacing:-0.708000px;}
.ls4{letter-spacing:-0.637200px;}
.ls5{letter-spacing:-0.566400px;}
.lsa{letter-spacing:-0.495600px;}
.lsb{letter-spacing:-0.424800px;}
.ls9{letter-spacing:-0.354000px;}
.lse{letter-spacing:-0.212400px;}
.lsf{letter-spacing:-0.141600px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.011400px;}
.ls0{letter-spacing:0.070800px;}
.ls2{letter-spacing:0.570000px;}
.ls8{letter-spacing:9.598200px;}
.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;}
}
.ws0{word-spacing:-17.700000px;}
.ws9{word-spacing:-17.275200px;}
.wsb{word-spacing:-17.204400px;}
.wsa{word-spacing:-16.992000px;}
.ws14{word-spacing:-14.250000px;}
.ws1{word-spacing:-12.390000px;}
.ws4{word-spacing:-0.070800px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.141600px;}
.ws15{word-spacing:0.212400px;}
.wsd{word-spacing:0.354000px;}
.ws10{word-spacing:0.424800px;}
.wse{word-spacing:0.495600px;}
.ws5{word-spacing:0.566400px;}
.ws3{word-spacing:0.637200px;}
.ws12{word-spacing:0.708000px;}
.ws6{word-spacing:0.778800px;}
.ws18{word-spacing:0.849600px;}
.ws17{word-spacing:0.920400px;}
.ws13{word-spacing:1.140000px;}
.ws19{word-spacing:1.416000px;}
.ws7{word-spacing:1.482000px;}
.wsf{word-spacing:3.327600px;}
.ws11{word-spacing:12.319200px;}
.ws8{word-spacing:14.250000px;}
.wsc{word-spacing:619.506600px;}
._12{margin-left:-1306.006800px;}
._a{margin-left:-14.560800px;}
._1{margin-left:-11.823600px;}
._c{margin-left:-9.133200px;}
._9{margin-left:-7.728000px;}
._8{margin-left:-5.593200px;}
._0{margin-left:-3.894000px;}
._f{margin-left:-2.611800px;}
._3{margin-left:-1.274400px;}
._5{width:1.132800px;}
._4{width:3.186000px;}
._2{width:4.248000px;}
._6{width:6.088800px;}
._10{width:8.000400px;}
._d{width:9.628800px;}
._7{width:11.257200px;}
._e{width:12.319200px;}
._11{width:13.452000px;}
._b{width:28.249200px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:36.362400px;}
.fs4{font-size:49.560000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:70.800000px;}
.fs3{font-size:75.000000px;}
.fs2{font-size:84.000000px;}
.y1a{bottom:-23.598450px;}
.y1{bottom:-23.414400px;}
.y0{bottom:0.000000px;}
.y3f{bottom:76.535400px;}
.y88{bottom:77.419350px;}
.y19{bottom:78.445950px;}
.y63{bottom:94.892700px;}
.y18{bottom:95.545950px;}
.y87{bottom:95.869200px;}
.y3e{bottom:96.933150px;}
.y62{bottom:113.250000px;}
.y86{bottom:114.319200px;}
.y3d{bottom:117.330900px;}
.y61{bottom:131.607150px;}
.y85{bottom:132.769200px;}
.y3c{bottom:137.728650px;}
.y15{bottom:146.113350px;}
.y60{bottom:149.964450px;}
.y84{bottom:151.219200px;}
.y3b{bottom:158.126400px;}
.y14{bottom:166.363350px;}
.y5f{bottom:168.321750px;}
.y3a{bottom:178.524150px;}
.y13{bottom:186.613350px;}
.y83{bottom:188.119200px;}
.y39{bottom:198.922050px;}
.y5e{bottom:205.036200px;}
.y82{bottom:206.569200px;}
.y12{bottom:206.863350px;}
.y38{bottom:219.319800px;}
.y5d{bottom:223.393500px;}
.y81{bottom:225.019200px;}
.y11{bottom:227.113350px;}
.y5c{bottom:241.750800px;}
.y80{bottom:243.469200px;}
.y10{bottom:247.363350px;}
.y37{bottom:252.473400px;}
.y5b{bottom:260.108100px;}
.y7f{bottom:261.919350px;}
.yf{bottom:267.613350px;}
.y36{bottom:272.871300px;}
.y5a{bottom:278.465250px;}
.y7e{bottom:280.369200px;}
.ye{bottom:287.863350px;}
.y35{bottom:291.019050px;}
.y7d{bottom:298.819200px;}
.yd{bottom:308.113350px;}
.y34{bottom:309.166800px;}
.y59{bottom:315.179850px;}
.yc{bottom:328.363350px;}
.y58{bottom:333.537150px;}
.y7c{bottom:335.719200px;}
.y33{bottom:344.322450px;}
.yb{bottom:348.613350px;}
.y57{bottom:351.894450px;}
.y7b{bottom:354.169350px;}
.y32{bottom:364.720200px;}
.ya{bottom:368.863350px;}
.y56{bottom:370.251600px;}
.y7a{bottom:372.619200px;}
.y31{bottom:385.118100px;}
.y55{bottom:388.608900px;}
.y9{bottom:389.113350px;}
.y79{bottom:391.069200px;}
.y30{bottom:405.515850px;}
.y54{bottom:406.966200px;}
.y8{bottom:409.363350px;}
.y78{bottom:409.519200px;}
.y2f{bottom:425.913600px;}
.y77{bottom:427.969200px;}
.y7{bottom:429.613350px;}
.y53{bottom:442.331250px;}
.y2e{bottom:446.311350px;}
.y76{bottom:446.419350px;}
.y6{bottom:449.863350px;}
.y52{bottom:462.938550px;}
.y75{bottom:464.869200px;}
.y2d{bottom:466.709100px;}
.y74{bottom:483.319200px;}
.y51{bottom:483.545850px;}
.y2c{bottom:487.106850px;}
.y5{bottom:490.363350px;}
.y50{bottom:504.153150px;}
.y2b{bottom:507.504750px;}
.y97{bottom:509.869200px;}
.y4{bottom:510.613350px;}
.y73{bottom:520.219200px;}
.y4f{bottom:524.760300px;}
.y96{bottom:527.869200px;}
.y2a{bottom:527.902500px;}
.y3{bottom:530.863350px;}
.y72{bottom:538.669350px;}
.y4e{bottom:545.367600px;}
.y29{bottom:548.300250px;}
.y2{bottom:551.113350px;}
.y71{bottom:557.119200px;}
.y95{bottom:563.869200px;}
.y4d{bottom:565.974900px;}
.y28{bottom:568.698000px;}
.y70{bottom:575.569200px;}
.y94{bottom:581.869200px;}
.y4c{bottom:586.582050px;}
.y27{bottom:589.095750px;}
.y6f{bottom:594.019200px;}
.y93{bottom:599.869200px;}
.y4b{bottom:607.189350px;}
.y26{bottom:609.493650px;}
.y6e{bottom:612.469200px;}
.y4a{bottom:627.796650px;}
.y25{bottom:629.891400px;}
.y6d{bottom:630.919350px;}
.y92{bottom:635.869200px;}
.y49{bottom:648.403950px;}
.y6c{bottom:649.369200px;}
.y24{bottom:650.289150px;}
.y91{bottom:653.869200px;}
.y17{bottom:664.656900px;}
.y6b{bottom:667.819200px;}
.y48{bottom:669.011100px;}
.y23{bottom:670.686900px;}
.y90{bottom:671.869200px;}
.y6a{bottom:686.269200px;}
.y47{bottom:689.618400px;}
.y8f{bottom:689.869200px;}
.y22{bottom:691.084650px;}
.y8e{bottom:707.869200px;}
.y46{bottom:710.225700px;}
.y21{bottom:711.482550px;}
.y69{bottom:723.169350px;}
.y8d{bottom:725.869200px;}
.y45{bottom:730.833000px;}
.y20{bottom:731.880300px;}
.y68{bottom:741.619200px;}
.y8c{bottom:743.869200px;}
.y44{bottom:751.440150px;}
.y1f{bottom:752.278050px;}
.y67{bottom:760.069200px;}
.y16{bottom:761.423700px;}
.y8b{bottom:761.869200px;}
.y43{bottom:772.047450px;}
.y1e{bottom:772.675800px;}
.y66{bottom:778.519200px;}
.y42{bottom:792.654750px;}
.y1d{bottom:793.073700px;}
.y65{bottom:796.969350px;}
.y8a{bottom:797.869200px;}
.y41{bottom:813.262050px;}
.y1c{bottom:813.471450px;}
.y64{bottom:815.419350px;}
.y89{bottom:815.869200px;}
.y1b{bottom:833.869200px;}
.y40{bottom:878.781000px;}
.h2{height:31.905875px;}
.h8{height:50.014160px;}
.h7{height:50.153320px;}
.h3{height:62.122852px;}
.h4{height:62.295703px;}
.h6{height:65.808105px;}
.h5{height:73.705078px;}
.h0{height:965.197500px;}
.h1{height:965.250000px;}
.w1{width:688.500000px;}
.w0{width:688.819500px;}
.x0{left:0.000000px;}
.x7{left:114.803100px;}
.x3{left:119.055150px;}
.x8{left:157.322850px;}
.x2{left:161.574750px;}
.x9{left:170.078700px;}
.xa{left:174.330750px;}
.x4{left:275.518350px;}
.x6{left:301.889700px;}
.x5{left:350.143500px;}
.x1{left:360.708600px;}
.xb{left:554.058000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-12.666667pt;}
.ls12{letter-spacing:-1.258667pt;}
.lsd{letter-spacing:-1.013333pt;}
.ls10{letter-spacing:-0.818133pt;}
.ls11{letter-spacing:-0.755200pt;}
.ls6{letter-spacing:-0.692267pt;}
.lsc{letter-spacing:-0.629333pt;}
.ls4{letter-spacing:-0.566400pt;}
.ls5{letter-spacing:-0.503467pt;}
.lsa{letter-spacing:-0.440533pt;}
.lsb{letter-spacing:-0.377600pt;}
.ls9{letter-spacing:-0.314667pt;}
.lse{letter-spacing:-0.188800pt;}
.lsf{letter-spacing:-0.125867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010133pt;}
.ls0{letter-spacing:0.062933pt;}
.ls2{letter-spacing:0.506667pt;}
.ls8{letter-spacing:8.531733pt;}
.ws0{word-spacing:-15.733333pt;}
.ws9{word-spacing:-15.355733pt;}
.wsb{word-spacing:-15.292800pt;}
.wsa{word-spacing:-15.104000pt;}
.ws14{word-spacing:-12.666667pt;}
.ws1{word-spacing:-11.013333pt;}
.ws4{word-spacing:-0.062933pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.125867pt;}
.ws15{word-spacing:0.188800pt;}
.wsd{word-spacing:0.314667pt;}
.ws10{word-spacing:0.377600pt;}
.wse{word-spacing:0.440533pt;}
.ws5{word-spacing:0.503467pt;}
.ws3{word-spacing:0.566400pt;}
.ws12{word-spacing:0.629333pt;}
.ws6{word-spacing:0.692267pt;}
.ws18{word-spacing:0.755200pt;}
.ws17{word-spacing:0.818133pt;}
.ws13{word-spacing:1.013333pt;}
.ws19{word-spacing:1.258667pt;}
.ws7{word-spacing:1.317333pt;}
.wsf{word-spacing:2.957867pt;}
.ws11{word-spacing:10.950400pt;}
.ws8{word-spacing:12.666667pt;}
.wsc{word-spacing:550.672533pt;}
._12{margin-left:-1160.894933pt;}
._a{margin-left:-12.942933pt;}
._1{margin-left:-10.509867pt;}
._c{margin-left:-8.118400pt;}
._9{margin-left:-6.869333pt;}
._8{margin-left:-4.971733pt;}
._0{margin-left:-3.461333pt;}
._f{margin-left:-2.321600pt;}
._3{margin-left:-1.132800pt;}
._5{width:1.006933pt;}
._4{width:2.832000pt;}
._2{width:3.776000pt;}
._6{width:5.412267pt;}
._10{width:7.111467pt;}
._d{width:8.558933pt;}
._7{width:10.006400pt;}
._e{width:10.950400pt;}
._11{width:11.957333pt;}
._b{width:25.110400pt;}
.fs0{font-size:32.322133pt;}
.fs4{font-size:44.053333pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:62.933333pt;}
.fs3{font-size:66.666667pt;}
.fs2{font-size:74.666667pt;}
.y1a{bottom:-20.976400pt;}
.y1{bottom:-20.812800pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:68.031467pt;}
.y88{bottom:68.817200pt;}
.y19{bottom:69.729733pt;}
.y63{bottom:84.349067pt;}
.y18{bottom:84.929733pt;}
.y87{bottom:85.217067pt;}
.y3e{bottom:86.162800pt;}
.y62{bottom:100.666667pt;}
.y86{bottom:101.617067pt;}
.y3d{bottom:104.294133pt;}
.y61{bottom:116.984133pt;}
.y85{bottom:118.017067pt;}
.y3c{bottom:122.425467pt;}
.y15{bottom:129.878533pt;}
.y60{bottom:133.301733pt;}
.y84{bottom:134.417067pt;}
.y3b{bottom:140.556800pt;}
.y14{bottom:147.878533pt;}
.y5f{bottom:149.619333pt;}
.y3a{bottom:158.688133pt;}
.y13{bottom:165.878533pt;}
.y83{bottom:167.217067pt;}
.y39{bottom:176.819600pt;}
.y5e{bottom:182.254400pt;}
.y82{bottom:183.617067pt;}
.y12{bottom:183.878533pt;}
.y38{bottom:194.950933pt;}
.y5d{bottom:198.572000pt;}
.y81{bottom:200.017067pt;}
.y11{bottom:201.878533pt;}
.y5c{bottom:214.889600pt;}
.y80{bottom:216.417067pt;}
.y10{bottom:219.878533pt;}
.y37{bottom:224.420800pt;}
.y5b{bottom:231.207200pt;}
.y7f{bottom:232.817200pt;}
.yf{bottom:237.878533pt;}
.y36{bottom:242.552267pt;}
.y5a{bottom:247.524667pt;}
.y7e{bottom:249.217067pt;}
.ye{bottom:255.878533pt;}
.y35{bottom:258.683600pt;}
.y7d{bottom:265.617067pt;}
.yd{bottom:273.878533pt;}
.y34{bottom:274.814933pt;}
.y59{bottom:280.159867pt;}
.yc{bottom:291.878533pt;}
.y58{bottom:296.477467pt;}
.y7c{bottom:298.417067pt;}
.y33{bottom:306.064400pt;}
.yb{bottom:309.878533pt;}
.y57{bottom:312.795067pt;}
.y7b{bottom:314.817200pt;}
.y32{bottom:324.195733pt;}
.ya{bottom:327.878533pt;}
.y56{bottom:329.112533pt;}
.y7a{bottom:331.217067pt;}
.y31{bottom:342.327200pt;}
.y55{bottom:345.430133pt;}
.y9{bottom:345.878533pt;}
.y79{bottom:347.617067pt;}
.y30{bottom:360.458533pt;}
.y54{bottom:361.747733pt;}
.y8{bottom:363.878533pt;}
.y78{bottom:364.017067pt;}
.y2f{bottom:378.589867pt;}
.y77{bottom:380.417067pt;}
.y7{bottom:381.878533pt;}
.y53{bottom:393.183333pt;}
.y2e{bottom:396.721200pt;}
.y76{bottom:396.817200pt;}
.y6{bottom:399.878533pt;}
.y52{bottom:411.500933pt;}
.y75{bottom:413.217067pt;}
.y2d{bottom:414.852533pt;}
.y74{bottom:429.617067pt;}
.y51{bottom:429.818533pt;}
.y2c{bottom:432.983867pt;}
.y5{bottom:435.878533pt;}
.y50{bottom:448.136133pt;}
.y2b{bottom:451.115333pt;}
.y97{bottom:453.217067pt;}
.y4{bottom:453.878533pt;}
.y73{bottom:462.417067pt;}
.y4f{bottom:466.453600pt;}
.y96{bottom:469.217067pt;}
.y2a{bottom:469.246667pt;}
.y3{bottom:471.878533pt;}
.y72{bottom:478.817200pt;}
.y4e{bottom:484.771200pt;}
.y29{bottom:487.378000pt;}
.y2{bottom:489.878533pt;}
.y71{bottom:495.217067pt;}
.y95{bottom:501.217067pt;}
.y4d{bottom:503.088800pt;}
.y28{bottom:505.509333pt;}
.y70{bottom:511.617067pt;}
.y94{bottom:517.217067pt;}
.y4c{bottom:521.406267pt;}
.y27{bottom:523.640667pt;}
.y6f{bottom:528.017067pt;}
.y93{bottom:533.217067pt;}
.y4b{bottom:539.723867pt;}
.y26{bottom:541.772133pt;}
.y6e{bottom:544.417067pt;}
.y4a{bottom:558.041467pt;}
.y25{bottom:559.903467pt;}
.y6d{bottom:560.817200pt;}
.y92{bottom:565.217067pt;}
.y49{bottom:576.359067pt;}
.y6c{bottom:577.217067pt;}
.y24{bottom:578.034800pt;}
.y91{bottom:581.217067pt;}
.y17{bottom:590.806133pt;}
.y6b{bottom:593.617067pt;}
.y48{bottom:594.676533pt;}
.y23{bottom:596.166133pt;}
.y90{bottom:597.217067pt;}
.y6a{bottom:610.017067pt;}
.y47{bottom:612.994133pt;}
.y8f{bottom:613.217067pt;}
.y22{bottom:614.297467pt;}
.y8e{bottom:629.217067pt;}
.y46{bottom:631.311733pt;}
.y21{bottom:632.428933pt;}
.y69{bottom:642.817200pt;}
.y8d{bottom:645.217067pt;}
.y45{bottom:649.629333pt;}
.y20{bottom:650.560267pt;}
.y68{bottom:659.217067pt;}
.y8c{bottom:661.217067pt;}
.y44{bottom:667.946800pt;}
.y1f{bottom:668.691600pt;}
.y67{bottom:675.617067pt;}
.y16{bottom:676.821067pt;}
.y8b{bottom:677.217067pt;}
.y43{bottom:686.264400pt;}
.y1e{bottom:686.822933pt;}
.y66{bottom:692.017067pt;}
.y42{bottom:704.582000pt;}
.y1d{bottom:704.954400pt;}
.y65{bottom:708.417200pt;}
.y8a{bottom:709.217067pt;}
.y41{bottom:722.899600pt;}
.y1c{bottom:723.085733pt;}
.y64{bottom:724.817200pt;}
.y89{bottom:725.217067pt;}
.y1b{bottom:741.217067pt;}
.y40{bottom:781.138667pt;}
.h2{height:28.360778pt;}
.h8{height:44.457031pt;}
.h7{height:44.580729pt;}
.h3{height:55.220313pt;}
.h4{height:55.373958pt;}
.h6{height:58.496094pt;}
.h5{height:65.515625pt;}
.h0{height:857.953333pt;}
.h1{height:858.000000pt;}
.w1{width:612.000000pt;}
.w0{width:612.284000pt;}
.x0{left:0.000000pt;}
.x7{left:102.047200pt;}
.x3{left:105.826800pt;}
.x8{left:139.842533pt;}
.x2{left:143.622000pt;}
.x9{left:151.181067pt;}
.xa{left:154.960667pt;}
.x4{left:244.905200pt;}
.x6{left:268.346400pt;}
.x5{left:311.238667pt;}
.x1{left:320.629867pt;}
.xb{left:492.496000pt;}
}

