
    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_7287be9c7d4d6788cbe8ecd1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-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_fbc46bbbb81eb88c27561c90.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-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_30e85ee952ed7d59193db69a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-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_5074bd6230d087e0f10e8902.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-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_f91fc523c2d934debd8528ce.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-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_833b606c7f612f0e8b1b5994.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-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);}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-68.425200px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.120000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.374480px;}
.ls34{letter-spacing:-1.008000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.576000px;}
.ls37{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.298800px;}
.ls14{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.239040px;}
.ls24{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.119520px;}
.ls38{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.059760px;}
.ls1c{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.179280px;}
.ls9{letter-spacing:0.239040px;}
.ls2f{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.358560px;}
.ls2c{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.597600px;}
.ls17{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.776880px;}
.ls2{letter-spacing:1.434240px;}
.ls1b{letter-spacing:1.440000px;}
.lsc{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.880000px;}
.ls26{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.320000px;}
.ls32{letter-spacing:5.040000px;}
.ls1a{letter-spacing:5.760000px;}
.lse{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.920000px;}
.ls10{letter-spacing:8.640000px;}
.ls31{letter-spacing:9.360000px;}
.ls1e{letter-spacing:10.080000px;}
.ls29{letter-spacing:10.800000px;}
.ls35{letter-spacing:12.240000px;}
.ls19{letter-spacing:12.960000px;}
.ls30{letter-spacing:13.680000px;}
.ls36{letter-spacing:15.120000px;}
.ls23{letter-spacing:16.560000px;}
.ls27{letter-spacing:18.000000px;}
.lsd{letter-spacing:20.160000px;}
.ls28{letter-spacing:21.600000px;}
.ls2b{letter-spacing:25.200000px;}
.ls21{letter-spacing:33.120000px;}
.ls12{letter-spacing:33.840000px;}
.ls0{letter-spacing:95.735520px;}
.ls2a{letter-spacing:194.400000px;}
.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;}
}
.ws61{word-spacing:-18.720000px;}
.ws20{word-spacing:-18.648000px;}
.ws49{word-spacing:-18.144000px;}
.ws4a{word-spacing:-18.072000px;}
.ws1f{word-spacing:-18.000000px;}
.ws8d{word-spacing:-17.856000px;}
.ws78{word-spacing:-17.784000px;}
.ws1e{word-spacing:-17.712000px;}
.ws9d{word-spacing:-17.568000px;}
.ws9c{word-spacing:-17.496000px;}
.ws88{word-spacing:-17.280000px;}
.ws60{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.971840px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.493760px;}
.ws8e{word-spacing:-9.720000px;}
.ws5c{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.298800px;}
.ws93{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.239040px;}
.ws44{word-spacing:-0.144000px;}
.ws5{word-spacing:-0.119520px;}
.ws89{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:0.059760px;}
.wsa0{word-spacing:0.072000px;}
.ws18{word-spacing:0.119520px;}
.ws9f{word-spacing:0.144000px;}
.ws6{word-spacing:0.179280px;}
.ws9a{word-spacing:0.216000px;}
.ws13{word-spacing:0.239040px;}
.ws33{word-spacing:0.288000px;}
.ws6a{word-spacing:0.576000px;}
.ws97{word-spacing:0.648000px;}
.ws31{word-spacing:0.720000px;}
.ws8{word-spacing:0.776880px;}
.ws8b{word-spacing:0.792000px;}
.ws30{word-spacing:1.008000px;}
.ws5b{word-spacing:1.296000px;}
.ws4{word-spacing:1.314720px;}
.ws2a{word-spacing:1.440000px;}
.wsc{word-spacing:1.494000px;}
.ws50{word-spacing:1.728000px;}
.ws4f{word-spacing:2.016000px;}
.ws2c{word-spacing:2.160000px;}
.ws1a{word-spacing:2.211120px;}
.wsa2{word-spacing:2.304000px;}
.ws22{word-spacing:2.448000px;}
.ws56{word-spacing:2.736000px;}
.ws28{word-spacing:2.880000px;}
.wsa{word-spacing:2.988000px;}
.ws41{word-spacing:3.168000px;}
.ws26{word-spacing:3.600000px;}
.ws9{word-spacing:3.705120px;}
.ws53{word-spacing:3.888000px;}
.ws2d{word-spacing:4.320000px;}
.ws2e{word-spacing:4.608000px;}
.ws3d{word-spacing:5.040000px;}
.ws19{word-spacing:5.139360px;}
.ws51{word-spacing:5.328000px;}
.ws3e{word-spacing:5.616000px;}
.ws55{word-spacing:5.760000px;}
.wse{word-spacing:5.856480px;}
.ws3a{word-spacing:6.048000px;}
.ws74{word-spacing:6.336000px;}
.ws32{word-spacing:6.480000px;}
.ws1c{word-spacing:6.573600px;}
.ws34{word-spacing:6.768000px;}
.ws9e{word-spacing:7.056000px;}
.ws35{word-spacing:7.200000px;}
.ws36{word-spacing:7.488000px;}
.ws38{word-spacing:7.776000px;}
.ws42{word-spacing:7.920000px;}
.ws1b{word-spacing:8.007840px;}
.ws37{word-spacing:8.208000px;}
.ws8c{word-spacing:8.496000px;}
.ws25{word-spacing:8.640000px;}
.wsb{word-spacing:8.724960px;}
.ws24{word-spacing:8.928000px;}
.ws63{word-spacing:9.216000px;}
.ws2f{word-spacing:9.360000px;}
.ws73{word-spacing:9.648000px;}
.ws70{word-spacing:9.936000px;}
.ws62{word-spacing:10.080000px;}
.ws99{word-spacing:10.152000px;}
.ws11{word-spacing:10.159200px;}
.ws57{word-spacing:10.368000px;}
.ws6d{word-spacing:10.800000px;}
.ws4b{word-spacing:11.088000px;}
.ws84{word-spacing:11.376000px;}
.ws23{word-spacing:11.520000px;}
.ws15{word-spacing:11.593440px;}
.wsa6{word-spacing:11.664000px;}
.ws94{word-spacing:11.808000px;}
.ws5f{word-spacing:12.096000px;}
.ws27{word-spacing:12.240000px;}
.ws5e{word-spacing:12.528000px;}
.ws91{word-spacing:12.960000px;}
.ws17{word-spacing:13.027680px;}
.wsa3{word-spacing:13.104000px;}
.ws29{word-spacing:13.248000px;}
.ws7b{word-spacing:13.680000px;}
.ws12{word-spacing:13.744800px;}
.ws66{word-spacing:13.968000px;}
.ws3b{word-spacing:14.400000px;}
.wsa5{word-spacing:14.472000px;}
.ws6b{word-spacing:14.688000px;}
.ws69{word-spacing:14.976000px;}
.ws43{word-spacing:15.120000px;}
.ws16{word-spacing:15.179040px;}
.ws3f{word-spacing:15.408000px;}
.ws7a{word-spacing:15.696000px;}
.ws75{word-spacing:15.840000px;}
.ws6e{word-spacing:16.128000px;}
.ws79{word-spacing:16.416000px;}
.ws4d{word-spacing:16.560000px;}
.ws40{word-spacing:16.632000px;}
.ws4e{word-spacing:16.848000px;}
.ws87{word-spacing:17.280000px;}
.ws8f{word-spacing:17.568000px;}
.ws82{word-spacing:17.856000px;}
.ws72{word-spacing:18.000000px;}
.ws67{word-spacing:18.720000px;}
.ws96{word-spacing:19.008000px;}
.ws8a{word-spacing:19.440000px;}
.ws10{word-spacing:19.541520px;}
.ws3c{word-spacing:19.728000px;}
.ws6c{word-spacing:20.160000px;}
.ws39{word-spacing:20.448000px;}
.ws71{word-spacing:20.736000px;}
.ws5d{word-spacing:20.880000px;}
.wsf{word-spacing:20.975760px;}
.ws2b{word-spacing:21.168000px;}
.ws54{word-spacing:21.600000px;}
.wsd{word-spacing:21.692880px;}
.ws5a{word-spacing:21.888000px;}
.ws80{word-spacing:22.320000px;}
.ws77{word-spacing:22.608000px;}
.ws59{word-spacing:23.040000px;}
.wsa1{word-spacing:23.184000px;}
.ws58{word-spacing:23.328000px;}
.ws21{word-spacing:24.048000px;}
.ws98{word-spacing:24.480000px;}
.ws7f{word-spacing:25.200000px;}
.ws90{word-spacing:25.488000px;}
.ws95{word-spacing:26.640000px;}
.ws92{word-spacing:27.360000px;}
.ws83{word-spacing:27.648000px;}
.ws85{word-spacing:28.656000px;}
.ws86{word-spacing:28.800000px;}
.ws4c{word-spacing:29.520000px;}
.ws64{word-spacing:29.808000px;}
.ws68{word-spacing:31.680000px;}
.ws81{word-spacing:32.688000px;}
.ws76{word-spacing:33.120000px;}
.ws9b{word-spacing:33.408000px;}
.ws46{word-spacing:33.696000px;}
.ws47{word-spacing:33.840000px;}
.ws45{word-spacing:34.128000px;}
.ws7c{word-spacing:34.560000px;}
.ws6f{word-spacing:34.848000px;}
.ws52{word-spacing:35.568000px;}
.ws7e{word-spacing:35.856000px;}
.ws48{word-spacing:36.000000px;}
.ws7d{word-spacing:36.288000px;}
.ws65{word-spacing:37.728000px;}
.wsa4{word-spacing:40.320000px;}
._11{margin-left:-4.653360px;}
._4{margin-left:-2.342880px;}
._3{margin-left:-1.314720px;}
._1{width:1.553760px;}
._0{width:2.569680px;}
._2{width:3.884400px;}
._f{width:5.165280px;}
._5{width:6.384960px;}
._6{width:8.772480px;}
._c{width:9.908640px;}
._14{width:11.304000px;}
._9{width:13.273920px;}
._7{width:15.331680px;}
._d{width:16.794720px;}
._b{width:19.656000px;}
._8{width:20.947680px;}
._a{width:22.849920px;}
._e{width:24.366240px;}
._10{width:26.424000px;}
._12{width:40.104000px;}
._13{width:41.592960px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yca{bottom:109.609560px;}
.yc5{bottom:117.180000px;}
.y9f{bottom:125.280000px;}
.y6b{bottom:126.180000px;}
.yc9{bottom:127.074420px;}
.ye3{bottom:127.080000px;}
.y87{bottom:136.980000px;}
.yc4{bottom:137.880000px;}
.y39{bottom:139.500000px;}
.y9e{bottom:145.980000px;}
.y6a{bottom:146.880000px;}
.yc8{bottom:151.200000px;}
.ye2{bottom:152.280000px;}
.yc3{bottom:158.580000px;}
.yc7{bottom:162.540000px;}
.y86{bottom:166.680000px;}
.y69{bottom:167.580000px;}
.y38{bottom:170.460000px;}
.ye1{bottom:172.980000px;}
.yc2{bottom:179.280000px;}
.y85{bottom:187.380000px;}
.y68{bottom:188.280000px;}
.y37{bottom:190.985040px;}
.yc1{bottom:199.980000px;}
.ye0{bottom:202.680000px;}
.y84{bottom:208.080000px;}
.y67{bottom:208.980000px;}
.y36{bottom:209.880000px;}
.yc0{bottom:220.680000px;}
.ydf{bottom:223.380000px;}
.y35{bottom:228.477060px;}
.y83{bottom:228.780000px;}
.y66{bottom:229.680000px;}
.ybf{bottom:241.380000px;}
.y34{bottom:245.583360px;}
.y82{bottom:249.480000px;}
.y65{bottom:250.380000px;}
.yde{bottom:253.080000px;}
.ybe{bottom:262.080000px;}
.y33{bottom:262.689660px;}
.y81{bottom:270.180000px;}
.y64{bottom:271.080000px;}
.ydd{bottom:273.780000px;}
.y32{bottom:279.975240px;}
.ybd{bottom:282.780000px;}
.y80{bottom:290.880000px;}
.y63{bottom:291.780000px;}
.ydc{bottom:294.480000px;}
.y31{bottom:297.260820px;}
.ybc{bottom:303.480000px;}
.y7f{bottom:311.580000px;}
.y62{bottom:312.480000px;}
.y30{bottom:314.546400px;}
.ydb{bottom:315.180000px;}
.y9d{bottom:320.580000px;}
.ybb{bottom:324.180000px;}
.y2f{bottom:331.831980px;}
.y61{bottom:333.180000px;}
.yda{bottom:335.880000px;}
.y7e{bottom:341.280000px;}
.yba{bottom:344.880000px;}
.y2e{bottom:349.117560px;}
.y9c{bottom:350.280000px;}
.y60{bottom:353.880000px;}
.yd9{bottom:356.580000px;}
.yb9{bottom:365.580000px;}
.y2d{bottom:366.223860px;}
.y7d{bottom:370.980000px;}
.y5f{bottom:374.580000px;}
.yd8{bottom:377.280000px;}
.y2c{bottom:383.509440px;}
.yb8{bottom:386.280000px;}
.y7c{bottom:391.680000px;}
.y5e{bottom:395.280000px;}
.yd7{bottom:397.980000px;}
.y2b{bottom:400.795020px;}
.yb7{bottom:406.980000px;}
.y7b{bottom:412.380000px;}
.y5d{bottom:415.980000px;}
.y2a{bottom:418.080600px;}
.yd6{bottom:418.680000px;}
.yb6{bottom:427.680000px;}
.y7a{bottom:433.080000px;}
.y29{bottom:435.366180px;}
.y5c{bottom:436.680000px;}
.yd5{bottom:439.380000px;}
.yb5{bottom:448.380000px;}
.y28{bottom:452.651760px;}
.y5b{bottom:457.380000px;}
.yd4{bottom:460.080000px;}
.y79{bottom:462.780000px;}
.yb4{bottom:469.080000px;}
.y27{bottom:469.758060px;}
.y5a{bottom:478.080000px;}
.yd3{bottom:480.780000px;}
.y26{bottom:487.043640px;}
.yb3{bottom:489.780000px;}
.y78{bottom:492.480000px;}
.ycf{bottom:498.420000px;}
.y59{bottom:498.780000px;}
.yd2{bottom:501.480000px;}
.y25{bottom:504.329220px;}
.yb2{bottom:510.480000px;}
.y77{bottom:513.180000px;}
.yce{bottom:519.120000px;}
.y58{bottom:519.480000px;}
.y24{bottom:521.614800px;}
.yd1{bottom:522.180000px;}
.yb1{bottom:531.180000px;}
.y76{bottom:533.880000px;}
.y23{bottom:538.900380px;}
.ycd{bottom:539.820000px;}
.y57{bottom:540.180000px;}
.yb0{bottom:551.880000px;}
.y9b{bottom:554.580000px;}
.y22{bottom:556.365240px;}
.y56{bottom:560.880000px;}
.y75{bottom:563.580000px;}
.yaf{bottom:572.580000px;}
.y21{bottom:573.292260px;}
.y9a{bottom:575.280000px;}
.y55{bottom:581.220000px;}
.y6e{bottom:581.580000px;}
.y20{bottom:590.577840px;}
.y74{bottom:593.280000px;}
.y99{bottom:595.980000px;}
.y54{bottom:602.280000px;}
.y1f{bottom:608.042700px;}
.y73{bottom:613.980000px;}
.y98{bottom:616.680000px;}
.y53{bottom:622.980000px;}
.y1e{bottom:625.149000px;}
.y72{bottom:634.680000px;}
.y1d{bottom:642.434580px;}
.ycc{bottom:643.320000px;}
.y52{bottom:643.680000px;}
.y97{bottom:646.380000px;}
.y71{bottom:655.380000px;}
.y1c{bottom:659.540880px;}
.ycb{bottom:664.020000px;}
.y51{bottom:664.380000px;}
.y96{bottom:667.080000px;}
.y70{bottom:676.080000px;}
.y1b{bottom:676.826460px;}
.y50{bottom:685.080000px;}
.y95{bottom:687.780000px;}
.y1a{bottom:694.112040px;}
.yae{bottom:696.780000px;}
.yd0{bottom:705.420000px;}
.y4f{bottom:705.780000px;}
.y94{bottom:708.480000px;}
.y19{bottom:711.397620px;}
.yad{bottom:717.480000px;}
.y6f{bottom:726.120000px;}
.y4e{bottom:726.480000px;}
.y18{bottom:728.683200px;}
.y93{bottom:729.180000px;}
.yac{bottom:738.180000px;}
.y17{bottom:745.968780px;}
.y4d{bottom:747.180000px;}
.y92{bottom:749.880000px;}
.yab{bottom:758.880000px;}
.y16{bottom:763.075080px;}
.y4c{bottom:767.880000px;}
.y91{bottom:770.580000px;}
.yaa{bottom:779.580000px;}
.y15{bottom:780.360660px;}
.y4b{bottom:788.580000px;}
.y90{bottom:791.280000px;}
.y14{bottom:797.646240px;}
.ya9{bottom:800.280000px;}
.y4a{bottom:809.280000px;}
.y8f{bottom:811.980000px;}
.y13{bottom:814.931820px;}
.ya8{bottom:820.980000px;}
.y49{bottom:829.980000px;}
.y12{bottom:832.217400px;}
.y8e{bottom:832.680000px;}
.ya7{bottom:841.680000px;}
.y11{bottom:849.502980px;}
.y48{bottom:850.680000px;}
.y8d{bottom:853.380000px;}
.ya6{bottom:862.380000px;}
.y10{bottom:866.609280px;}
.y47{bottom:871.380000px;}
.y8c{bottom:874.080000px;}
.ya5{bottom:883.080000px;}
.yf{bottom:883.894860px;}
.y46{bottom:892.080000px;}
.y8b{bottom:894.780000px;}
.ye{bottom:901.180440px;}
.ya4{bottom:903.780000px;}
.y45{bottom:912.780000px;}
.y8a{bottom:915.480000px;}
.yd{bottom:918.466020px;}
.ya3{bottom:924.480000px;}
.y44{bottom:933.480000px;}
.yc{bottom:935.751600px;}
.y89{bottom:936.180000px;}
.ya2{bottom:945.180000px;}
.yb{bottom:953.216460px;}
.y43{bottom:954.180000px;}
.ya1{bottom:965.520000px;}
.y88{bottom:965.880000px;}
.ya{bottom:970.143480px;}
.y42{bottom:974.880000px;}
.ya0{bottom:986.220000px;}
.y9{bottom:987.429060px;}
.y41{bottom:995.580000px;}
.y8{bottom:1004.893920px;}
.yc6{bottom:1015.920000px;}
.y40{bottom:1016.280000px;}
.y7{bottom:1022.179500px;}
.y3f{bottom:1036.980000px;}
.y6{bottom:1039.285800px;}
.y5{bottom:1056.392100px;}
.y3e{bottom:1057.680000px;}
.y4{bottom:1073.677680px;}
.y3d{bottom:1078.380000px;}
.y3{bottom:1090.963260px;}
.y3c{bottom:1099.080000px;}
.y2{bottom:1108.428120px;}
.y3b{bottom:1119.420000px;}
.y6d{bottom:1119.780000px;}
.y3a{bottom:1140.120000px;}
.y6c{bottom:1140.480000px;}
.y1{bottom:1142.820000px;}
.h7{height:38.158594px;}
.h2{height:62.327813px;}
.h3{height:69.086250px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h6{height:80.464922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:141.305040px;}
.x8{left:180.720000px;}
.x9{left:208.620000px;}
.x2{left:284.400360px;}
.x5{left:317.163780px;}
.x6{left:366.839280px;}
.x7{left:372.247560px;}
.x3{left:446.409720px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-60.822400pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.221760pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls37{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.265600pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.212480pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.106240pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053120pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.159360pt;}
.ls9{letter-spacing:0.212480pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.318720pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.531200pt;}
.ls17{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.690560pt;}
.ls2{letter-spacing:1.274880pt;}
.ls1b{letter-spacing:1.280000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls26{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls32{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:5.120000pt;}
.lse{letter-spacing:5.760000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls10{letter-spacing:7.680000pt;}
.ls31{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:8.960000pt;}
.ls29{letter-spacing:9.600000pt;}
.ls35{letter-spacing:10.880000pt;}
.ls19{letter-spacing:11.520000pt;}
.ls30{letter-spacing:12.160000pt;}
.ls36{letter-spacing:13.440000pt;}
.ls23{letter-spacing:14.720000pt;}
.ls27{letter-spacing:16.000000pt;}
.lsd{letter-spacing:17.920000pt;}
.ls28{letter-spacing:19.200000pt;}
.ls2b{letter-spacing:22.400000pt;}
.ls21{letter-spacing:29.440000pt;}
.ls12{letter-spacing:30.080000pt;}
.ls0{letter-spacing:85.098240pt;}
.ls2a{letter-spacing:172.800000pt;}
.ws61{word-spacing:-16.640000pt;}
.ws20{word-spacing:-16.576000pt;}
.ws49{word-spacing:-16.128000pt;}
.ws4a{word-spacing:-16.064000pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws8d{word-spacing:-15.872000pt;}
.ws78{word-spacing:-15.808000pt;}
.ws1e{word-spacing:-15.744000pt;}
.ws9d{word-spacing:-15.616000pt;}
.ws9c{word-spacing:-15.552000pt;}
.ws88{word-spacing:-15.360000pt;}
.ws60{word-spacing:-15.168000pt;}
.ws1{word-spacing:-15.086080pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.661120pt;}
.ws8e{word-spacing:-8.640000pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.265600pt;}
.ws93{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.212480pt;}
.ws44{word-spacing:-0.128000pt;}
.ws5{word-spacing:-0.106240pt;}
.ws89{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:0.053120pt;}
.wsa0{word-spacing:0.064000pt;}
.ws18{word-spacing:0.106240pt;}
.ws9f{word-spacing:0.128000pt;}
.ws6{word-spacing:0.159360pt;}
.ws9a{word-spacing:0.192000pt;}
.ws13{word-spacing:0.212480pt;}
.ws33{word-spacing:0.256000pt;}
.ws6a{word-spacing:0.512000pt;}
.ws97{word-spacing:0.576000pt;}
.ws31{word-spacing:0.640000pt;}
.ws8{word-spacing:0.690560pt;}
.ws8b{word-spacing:0.704000pt;}
.ws30{word-spacing:0.896000pt;}
.ws5b{word-spacing:1.152000pt;}
.ws4{word-spacing:1.168640pt;}
.ws2a{word-spacing:1.280000pt;}
.wsc{word-spacing:1.328000pt;}
.ws50{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.792000pt;}
.ws2c{word-spacing:1.920000pt;}
.ws1a{word-spacing:1.965440pt;}
.wsa2{word-spacing:2.048000pt;}
.ws22{word-spacing:2.176000pt;}
.ws56{word-spacing:2.432000pt;}
.ws28{word-spacing:2.560000pt;}
.wsa{word-spacing:2.656000pt;}
.ws41{word-spacing:2.816000pt;}
.ws26{word-spacing:3.200000pt;}
.ws9{word-spacing:3.293440pt;}
.ws53{word-spacing:3.456000pt;}
.ws2d{word-spacing:3.840000pt;}
.ws2e{word-spacing:4.096000pt;}
.ws3d{word-spacing:4.480000pt;}
.ws19{word-spacing:4.568320pt;}
.ws51{word-spacing:4.736000pt;}
.ws3e{word-spacing:4.992000pt;}
.ws55{word-spacing:5.120000pt;}
.wse{word-spacing:5.205760pt;}
.ws3a{word-spacing:5.376000pt;}
.ws74{word-spacing:5.632000pt;}
.ws32{word-spacing:5.760000pt;}
.ws1c{word-spacing:5.843200pt;}
.ws34{word-spacing:6.016000pt;}
.ws9e{word-spacing:6.272000pt;}
.ws35{word-spacing:6.400000pt;}
.ws36{word-spacing:6.656000pt;}
.ws38{word-spacing:6.912000pt;}
.ws42{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.118080pt;}
.ws37{word-spacing:7.296000pt;}
.ws8c{word-spacing:7.552000pt;}
.ws25{word-spacing:7.680000pt;}
.wsb{word-spacing:7.755520pt;}
.ws24{word-spacing:7.936000pt;}
.ws63{word-spacing:8.192000pt;}
.ws2f{word-spacing:8.320000pt;}
.ws73{word-spacing:8.576000pt;}
.ws70{word-spacing:8.832000pt;}
.ws62{word-spacing:8.960000pt;}
.ws99{word-spacing:9.024000pt;}
.ws11{word-spacing:9.030400pt;}
.ws57{word-spacing:9.216000pt;}
.ws6d{word-spacing:9.600000pt;}
.ws4b{word-spacing:9.856000pt;}
.ws84{word-spacing:10.112000pt;}
.ws23{word-spacing:10.240000pt;}
.ws15{word-spacing:10.305280pt;}
.wsa6{word-spacing:10.368000pt;}
.ws94{word-spacing:10.496000pt;}
.ws5f{word-spacing:10.752000pt;}
.ws27{word-spacing:10.880000pt;}
.ws5e{word-spacing:11.136000pt;}
.ws91{word-spacing:11.520000pt;}
.ws17{word-spacing:11.580160pt;}
.wsa3{word-spacing:11.648000pt;}
.ws29{word-spacing:11.776000pt;}
.ws7b{word-spacing:12.160000pt;}
.ws12{word-spacing:12.217600pt;}
.ws66{word-spacing:12.416000pt;}
.ws3b{word-spacing:12.800000pt;}
.wsa5{word-spacing:12.864000pt;}
.ws6b{word-spacing:13.056000pt;}
.ws69{word-spacing:13.312000pt;}
.ws43{word-spacing:13.440000pt;}
.ws16{word-spacing:13.492480pt;}
.ws3f{word-spacing:13.696000pt;}
.ws7a{word-spacing:13.952000pt;}
.ws75{word-spacing:14.080000pt;}
.ws6e{word-spacing:14.336000pt;}
.ws79{word-spacing:14.592000pt;}
.ws4d{word-spacing:14.720000pt;}
.ws40{word-spacing:14.784000pt;}
.ws4e{word-spacing:14.976000pt;}
.ws87{word-spacing:15.360000pt;}
.ws8f{word-spacing:15.616000pt;}
.ws82{word-spacing:15.872000pt;}
.ws72{word-spacing:16.000000pt;}
.ws67{word-spacing:16.640000pt;}
.ws96{word-spacing:16.896000pt;}
.ws8a{word-spacing:17.280000pt;}
.ws10{word-spacing:17.370240pt;}
.ws3c{word-spacing:17.536000pt;}
.ws6c{word-spacing:17.920000pt;}
.ws39{word-spacing:18.176000pt;}
.ws71{word-spacing:18.432000pt;}
.ws5d{word-spacing:18.560000pt;}
.wsf{word-spacing:18.645120pt;}
.ws2b{word-spacing:18.816000pt;}
.ws54{word-spacing:19.200000pt;}
.wsd{word-spacing:19.282560pt;}
.ws5a{word-spacing:19.456000pt;}
.ws80{word-spacing:19.840000pt;}
.ws77{word-spacing:20.096000pt;}
.ws59{word-spacing:20.480000pt;}
.wsa1{word-spacing:20.608000pt;}
.ws58{word-spacing:20.736000pt;}
.ws21{word-spacing:21.376000pt;}
.ws98{word-spacing:21.760000pt;}
.ws7f{word-spacing:22.400000pt;}
.ws90{word-spacing:22.656000pt;}
.ws95{word-spacing:23.680000pt;}
.ws92{word-spacing:24.320000pt;}
.ws83{word-spacing:24.576000pt;}
.ws85{word-spacing:25.472000pt;}
.ws86{word-spacing:25.600000pt;}
.ws4c{word-spacing:26.240000pt;}
.ws64{word-spacing:26.496000pt;}
.ws68{word-spacing:28.160000pt;}
.ws81{word-spacing:29.056000pt;}
.ws76{word-spacing:29.440000pt;}
.ws9b{word-spacing:29.696000pt;}
.ws46{word-spacing:29.952000pt;}
.ws47{word-spacing:30.080000pt;}
.ws45{word-spacing:30.336000pt;}
.ws7c{word-spacing:30.720000pt;}
.ws6f{word-spacing:30.976000pt;}
.ws52{word-spacing:31.616000pt;}
.ws7e{word-spacing:31.872000pt;}
.ws48{word-spacing:32.000000pt;}
.ws7d{word-spacing:32.256000pt;}
.ws65{word-spacing:33.536000pt;}
.wsa4{word-spacing:35.840000pt;}
._11{margin-left:-4.136320pt;}
._4{margin-left:-2.082560pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.381120pt;}
._0{width:2.284160pt;}
._2{width:3.452800pt;}
._f{width:4.591360pt;}
._5{width:5.675520pt;}
._6{width:7.797760pt;}
._c{width:8.807680pt;}
._14{width:10.048000pt;}
._9{width:11.799040pt;}
._7{width:13.628160pt;}
._d{width:14.928640pt;}
._b{width:17.472000pt;}
._8{width:18.620160pt;}
._a{width:20.311040pt;}
._e{width:21.658880pt;}
._10{width:23.488000pt;}
._12{width:35.648000pt;}
._13{width:36.971520pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:97.430720pt;}
.yc5{bottom:104.160000pt;}
.y9f{bottom:111.360000pt;}
.y6b{bottom:112.160000pt;}
.yc9{bottom:112.955040pt;}
.ye3{bottom:112.960000pt;}
.y87{bottom:121.760000pt;}
.yc4{bottom:122.560000pt;}
.y39{bottom:124.000000pt;}
.y9e{bottom:129.760000pt;}
.y6a{bottom:130.560000pt;}
.yc8{bottom:134.400000pt;}
.ye2{bottom:135.360000pt;}
.yc3{bottom:140.960000pt;}
.yc7{bottom:144.480000pt;}
.y86{bottom:148.160000pt;}
.y69{bottom:148.960000pt;}
.y38{bottom:151.520000pt;}
.ye1{bottom:153.760000pt;}
.yc2{bottom:159.360000pt;}
.y85{bottom:166.560000pt;}
.y68{bottom:167.360000pt;}
.y37{bottom:169.764480pt;}
.yc1{bottom:177.760000pt;}
.ye0{bottom:180.160000pt;}
.y84{bottom:184.960000pt;}
.y67{bottom:185.760000pt;}
.y36{bottom:186.560000pt;}
.yc0{bottom:196.160000pt;}
.ydf{bottom:198.560000pt;}
.y35{bottom:203.090720pt;}
.y83{bottom:203.360000pt;}
.y66{bottom:204.160000pt;}
.ybf{bottom:214.560000pt;}
.y34{bottom:218.296320pt;}
.y82{bottom:221.760000pt;}
.y65{bottom:222.560000pt;}
.yde{bottom:224.960000pt;}
.ybe{bottom:232.960000pt;}
.y33{bottom:233.501920pt;}
.y81{bottom:240.160000pt;}
.y64{bottom:240.960000pt;}
.ydd{bottom:243.360000pt;}
.y32{bottom:248.866880pt;}
.ybd{bottom:251.360000pt;}
.y80{bottom:258.560000pt;}
.y63{bottom:259.360000pt;}
.ydc{bottom:261.760000pt;}
.y31{bottom:264.231840pt;}
.ybc{bottom:269.760000pt;}
.y7f{bottom:276.960000pt;}
.y62{bottom:277.760000pt;}
.y30{bottom:279.596800pt;}
.ydb{bottom:280.160000pt;}
.y9d{bottom:284.960000pt;}
.ybb{bottom:288.160000pt;}
.y2f{bottom:294.961760pt;}
.y61{bottom:296.160000pt;}
.yda{bottom:298.560000pt;}
.y7e{bottom:303.360000pt;}
.yba{bottom:306.560000pt;}
.y2e{bottom:310.326720pt;}
.y9c{bottom:311.360000pt;}
.y60{bottom:314.560000pt;}
.yd9{bottom:316.960000pt;}
.yb9{bottom:324.960000pt;}
.y2d{bottom:325.532320pt;}
.y7d{bottom:329.760000pt;}
.y5f{bottom:332.960000pt;}
.yd8{bottom:335.360000pt;}
.y2c{bottom:340.897280pt;}
.yb8{bottom:343.360000pt;}
.y7c{bottom:348.160000pt;}
.y5e{bottom:351.360000pt;}
.yd7{bottom:353.760000pt;}
.y2b{bottom:356.262240pt;}
.yb7{bottom:361.760000pt;}
.y7b{bottom:366.560000pt;}
.y5d{bottom:369.760000pt;}
.y2a{bottom:371.627200pt;}
.yd6{bottom:372.160000pt;}
.yb6{bottom:380.160000pt;}
.y7a{bottom:384.960000pt;}
.y29{bottom:386.992160pt;}
.y5c{bottom:388.160000pt;}
.yd5{bottom:390.560000pt;}
.yb5{bottom:398.560000pt;}
.y28{bottom:402.357120pt;}
.y5b{bottom:406.560000pt;}
.yd4{bottom:408.960000pt;}
.y79{bottom:411.360000pt;}
.yb4{bottom:416.960000pt;}
.y27{bottom:417.562720pt;}
.y5a{bottom:424.960000pt;}
.yd3{bottom:427.360000pt;}
.y26{bottom:432.927680pt;}
.yb3{bottom:435.360000pt;}
.y78{bottom:437.760000pt;}
.ycf{bottom:443.040000pt;}
.y59{bottom:443.360000pt;}
.yd2{bottom:445.760000pt;}
.y25{bottom:448.292640pt;}
.yb2{bottom:453.760000pt;}
.y77{bottom:456.160000pt;}
.yce{bottom:461.440000pt;}
.y58{bottom:461.760000pt;}
.y24{bottom:463.657600pt;}
.yd1{bottom:464.160000pt;}
.yb1{bottom:472.160000pt;}
.y76{bottom:474.560000pt;}
.y23{bottom:479.022560pt;}
.ycd{bottom:479.840000pt;}
.y57{bottom:480.160000pt;}
.yb0{bottom:490.560000pt;}
.y9b{bottom:492.960000pt;}
.y22{bottom:494.546880pt;}
.y56{bottom:498.560000pt;}
.y75{bottom:500.960000pt;}
.yaf{bottom:508.960000pt;}
.y21{bottom:509.593120pt;}
.y9a{bottom:511.360000pt;}
.y55{bottom:516.640000pt;}
.y6e{bottom:516.960000pt;}
.y20{bottom:524.958080pt;}
.y74{bottom:527.360000pt;}
.y99{bottom:529.760000pt;}
.y54{bottom:535.360000pt;}
.y1f{bottom:540.482400pt;}
.y73{bottom:545.760000pt;}
.y98{bottom:548.160000pt;}
.y53{bottom:553.760000pt;}
.y1e{bottom:555.688000pt;}
.y72{bottom:564.160000pt;}
.y1d{bottom:571.052960pt;}
.ycc{bottom:571.840000pt;}
.y52{bottom:572.160000pt;}
.y97{bottom:574.560000pt;}
.y71{bottom:582.560000pt;}
.y1c{bottom:586.258560pt;}
.ycb{bottom:590.240000pt;}
.y51{bottom:590.560000pt;}
.y96{bottom:592.960000pt;}
.y70{bottom:600.960000pt;}
.y1b{bottom:601.623520pt;}
.y50{bottom:608.960000pt;}
.y95{bottom:611.360000pt;}
.y1a{bottom:616.988480pt;}
.yae{bottom:619.360000pt;}
.yd0{bottom:627.040000pt;}
.y4f{bottom:627.360000pt;}
.y94{bottom:629.760000pt;}
.y19{bottom:632.353440pt;}
.yad{bottom:637.760000pt;}
.y6f{bottom:645.440000pt;}
.y4e{bottom:645.760000pt;}
.y18{bottom:647.718400pt;}
.y93{bottom:648.160000pt;}
.yac{bottom:656.160000pt;}
.y17{bottom:663.083360pt;}
.y4d{bottom:664.160000pt;}
.y92{bottom:666.560000pt;}
.yab{bottom:674.560000pt;}
.y16{bottom:678.288960pt;}
.y4c{bottom:682.560000pt;}
.y91{bottom:684.960000pt;}
.yaa{bottom:692.960000pt;}
.y15{bottom:693.653920pt;}
.y4b{bottom:700.960000pt;}
.y90{bottom:703.360000pt;}
.y14{bottom:709.018880pt;}
.ya9{bottom:711.360000pt;}
.y4a{bottom:719.360000pt;}
.y8f{bottom:721.760000pt;}
.y13{bottom:724.383840pt;}
.ya8{bottom:729.760000pt;}
.y49{bottom:737.760000pt;}
.y12{bottom:739.748800pt;}
.y8e{bottom:740.160000pt;}
.ya7{bottom:748.160000pt;}
.y11{bottom:755.113760pt;}
.y48{bottom:756.160000pt;}
.y8d{bottom:758.560000pt;}
.ya6{bottom:766.560000pt;}
.y10{bottom:770.319360pt;}
.y47{bottom:774.560000pt;}
.y8c{bottom:776.960000pt;}
.ya5{bottom:784.960000pt;}
.yf{bottom:785.684320pt;}
.y46{bottom:792.960000pt;}
.y8b{bottom:795.360000pt;}
.ye{bottom:801.049280pt;}
.ya4{bottom:803.360000pt;}
.y45{bottom:811.360000pt;}
.y8a{bottom:813.760000pt;}
.yd{bottom:816.414240pt;}
.ya3{bottom:821.760000pt;}
.y44{bottom:829.760000pt;}
.yc{bottom:831.779200pt;}
.y89{bottom:832.160000pt;}
.ya2{bottom:840.160000pt;}
.yb{bottom:847.303520pt;}
.y43{bottom:848.160000pt;}
.ya1{bottom:858.240000pt;}
.y88{bottom:858.560000pt;}
.ya{bottom:862.349760pt;}
.y42{bottom:866.560000pt;}
.ya0{bottom:876.640000pt;}
.y9{bottom:877.714720pt;}
.y41{bottom:884.960000pt;}
.y8{bottom:893.239040pt;}
.yc6{bottom:903.040000pt;}
.y40{bottom:903.360000pt;}
.y7{bottom:908.604000pt;}
.y3f{bottom:921.760000pt;}
.y6{bottom:923.809600pt;}
.y5{bottom:939.015200pt;}
.y3e{bottom:940.160000pt;}
.y4{bottom:954.380160pt;}
.y3d{bottom:958.560000pt;}
.y3{bottom:969.745120pt;}
.y3c{bottom:976.960000pt;}
.y2{bottom:985.269440pt;}
.y3b{bottom:995.040000pt;}
.y6d{bottom:995.360000pt;}
.y3a{bottom:1013.440000pt;}
.y6c{bottom:1013.760000pt;}
.y1{bottom:1015.840000pt;}
.h7{height:33.918750pt;}
.h2{height:55.402500pt;}
.h3{height:61.410000pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h6{height:71.524375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:125.604480pt;}
.x8{left:160.640000pt;}
.x9{left:185.440000pt;}
.x2{left:252.800320pt;}
.x5{left:281.923360pt;}
.x6{left:326.079360pt;}
.x7{left:330.886720pt;}
.x3{left:396.808640pt;}
}

