
    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_82cd15f6a46bc2f175988a27.woff')format("woff");}.ff1{font-family:ff1;line-height:1.042000;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_1b50bfe885dadc09c25870f3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9dc849821b74d95114eacc1c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.748000;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_4f7cd2e5f21c75caf554bdba.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_53a0e5d76d412e09f69bfafe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_8c98ab60ff40b2c6f8868dd8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040000;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_0195ad2c40ac5d2e1ee9c839.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_e5b845d57fe2a632c45274c4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680000;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:19.979400px;}
.ls4{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.300000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.349740px;}
.ls6{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.868800px;}
.lsa{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.539000px;}
.ls0{letter-spacing:4.528740px;}
.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;}
}
.ws22{word-spacing:-16.968000px;}
.wsb{word-spacing:-16.128000px;}
.ws3{word-spacing:-12.120000px;}
.ws4c{word-spacing:-11.520000px;}
.ws67{word-spacing:-10.920000px;}
.ws4{word-spacing:-8.484000px;}
.ws1{word-spacing:-7.272000px;}
.ws0{word-spacing:-5.090400px;}
.ws2{word-spacing:-4.619315px;}
.ws6{word-spacing:-4.528740px;}
.ws38{word-spacing:-3.120000px;}
.ws35{word-spacing:-2.760000px;}
.ws39{word-spacing:-2.400000px;}
.ws4a{word-spacing:-2.280000px;}
.ws75{word-spacing:-2.220000px;}
.ws37{word-spacing:-2.040000px;}
.ws4e{word-spacing:-1.980000px;}
.ws7f{word-spacing:-1.920000px;}
.ws53{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.764000px;}
.ws2d{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.680000px;}
.ws68{word-spacing:-1.620000px;}
.ws28{word-spacing:-1.560000px;}
.ws6c{word-spacing:-1.539000px;}
.ws1e{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.380000px;}
.ws3f{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.260000px;}
.ws71{word-spacing:-1.200000px;}
.ws54{word-spacing:-1.170000px;}
.ws94{word-spacing:-1.140000px;}
.ws40{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.020000px;}
.ws63{word-spacing:-0.960000px;}
.ws26{word-spacing:-0.900000px;}
.ws72{word-spacing:-0.840000px;}
.ws8f{word-spacing:-0.780000px;}
.ws31{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.600000px;}
.ws2e{word-spacing:-0.540000px;}
.ws85{word-spacing:-0.480000px;}
.ws5b{word-spacing:-0.420000px;}
.ws5d{word-spacing:-0.360000px;}
.ws2f{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.240000px;}
.ws1b{word-spacing:-0.180000px;}
.ws43{word-spacing:-0.120000px;}
.ws32{word-spacing:-0.060000px;}
.ws58{word-spacing:-0.054600px;}
.ws90{word-spacing:-0.042000px;}
.ws5{word-spacing:0.000000px;}
.ws27{word-spacing:0.060000px;}
.ws20{word-spacing:0.120000px;}
.ws86{word-spacing:0.180000px;}
.ws34{word-spacing:0.240000px;}
.ws8{word-spacing:0.300000px;}
.ws7{word-spacing:0.360000px;}
.ws65{word-spacing:0.420000px;}
.ws70{word-spacing:0.480000px;}
.ws5e{word-spacing:0.540000px;}
.ws50{word-spacing:0.600000px;}
.ws10{word-spacing:0.660000px;}
.ws89{word-spacing:0.720000px;}
.ws5c{word-spacing:0.780000px;}
.ws3e{word-spacing:0.840000px;}
.ws2a{word-spacing:0.900000px;}
.ws3a{word-spacing:0.960000px;}
.ws7e{word-spacing:1.020000px;}
.ws21{word-spacing:1.080000px;}
.ws14{word-spacing:1.140000px;}
.ws1f{word-spacing:1.200000px;}
.ws3c{word-spacing:1.260000px;}
.ws4d{word-spacing:1.320000px;}
.ws16{word-spacing:1.380000px;}
.ws49{word-spacing:1.440000px;}
.wsd{word-spacing:1.500000px;}
.ws57{word-spacing:1.560000px;}
.ws83{word-spacing:1.620000px;}
.ws64{word-spacing:1.680000px;}
.ws59{word-spacing:1.740000px;}
.ws5a{word-spacing:1.800000px;}
.ws6e{word-spacing:1.860000px;}
.ws78{word-spacing:1.920000px;}
.ws69{word-spacing:1.980000px;}
.ws82{word-spacing:2.040000px;}
.ws12{word-spacing:2.100000px;}
.ws6f{word-spacing:2.160000px;}
.ws11{word-spacing:2.220000px;}
.ws1d{word-spacing:2.280000px;}
.ws8c{word-spacing:2.340000px;}
.ws77{word-spacing:2.400000px;}
.ws1a{word-spacing:2.460000px;}
.ws47{word-spacing:2.580000px;}
.ws23{word-spacing:2.640000px;}
.ws3d{word-spacing:2.700000px;}
.ws7a{word-spacing:2.880000px;}
.ws1c{word-spacing:3.060000px;}
.ws2b{word-spacing:3.120000px;}
.ws95{word-spacing:3.180000px;}
.ws55{word-spacing:3.240000px;}
.ws46{word-spacing:3.300000px;}
.ws24{word-spacing:3.360000px;}
.ws48{word-spacing:3.420000px;}
.ws25{word-spacing:3.480000px;}
.ws36{word-spacing:3.540000px;}
.ws42{word-spacing:3.600000px;}
.ws62{word-spacing:3.660000px;}
.ws7b{word-spacing:3.720000px;}
.ws41{word-spacing:3.780000px;}
.ws5f{word-spacing:3.840000px;}
.ws6d{word-spacing:3.900000px;}
.ws80{word-spacing:3.960000px;}
.ws45{word-spacing:4.020000px;}
.ws8b{word-spacing:4.080000px;}
.ws19{word-spacing:4.140000px;}
.ws87{word-spacing:4.200000px;}
.ws56{word-spacing:4.260000px;}
.ws52{word-spacing:4.320000px;}
.ws33{word-spacing:4.380000px;}
.ws18{word-spacing:4.500000px;}
.ws76{word-spacing:4.680000px;}
.ws6b{word-spacing:4.740000px;}
.ws2c{word-spacing:4.920000px;}
.ws88{word-spacing:4.980000px;}
.ws3b{word-spacing:5.100000px;}
.ws79{word-spacing:5.160000px;}
.ws66{word-spacing:5.280000px;}
.ws6a{word-spacing:5.400000px;}
.ws61{word-spacing:5.640000px;}
.ws13{word-spacing:5.700000px;}
.ws30{word-spacing:5.760000px;}
.wsc{word-spacing:6.000000px;}
.ws44{word-spacing:6.480000px;}
.ws84{word-spacing:6.540000px;}
.ws7c{word-spacing:6.600000px;}
.ws81{word-spacing:6.660000px;}
.wse{word-spacing:6.720000px;}
.ws73{word-spacing:6.780000px;}
.ws4f{word-spacing:6.840000px;}
.ws60{word-spacing:6.900000px;}
.ws7d{word-spacing:7.320000px;}
.ws9b{word-spacing:7.380000px;}
.ws9a{word-spacing:7.740000px;}
.ws51{word-spacing:8.400000px;}
.ws8e{word-spacing:8.700000px;}
.ws8d{word-spacing:9.120000px;}
.ws97{word-spacing:9.180000px;}
.ws8a{word-spacing:9.240000px;}
.ws98{word-spacing:9.420000px;}
.ws91{word-spacing:9.540000px;}
.ws96{word-spacing:9.720000px;}
.ws99{word-spacing:9.900000px;}
.ws93{word-spacing:10.560000px;}
.ws92{word-spacing:11.100000px;}
._8{margin-left:-10.172400px;}
._5{margin-left:-9.104400px;}
._2{margin-left:-7.213282px;}
._7{margin-left:-5.078400px;}
._6{margin-left:-4.001400px;}
._3{margin-left:-2.660400px;}
._0{margin-left:-1.119600px;}
._1{width:1.080000px;}
._4{width:2.192400px;}
._a{width:4.023600px;}
._b{width:5.295600px;}
._e{width:6.530400px;}
._c{width:8.433600px;}
._11{width:9.633600px;}
._14{width:16.058400px;}
._13{width:17.187600px;}
._15{width:21.300000px;}
._16{width:23.100000px;}
._12{width:49.920000px;}
._f{width:51.120000px;}
._10{width:52.320000px;}
._d{width:61.380000px;}
._9{width:64.860000px;}
.fc3{color:rgb(112,111,111);}
.fc5{color:rgb(135,135,135);}
.fc4{color:rgb(235,94,87);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(87,87,86);}
.fs2{font-size:25.200000px;}
.fs7{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:54.600000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:90.574800px;}
.fs0{font-size:153.900000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.684100px;}
.y107{bottom:121.659450px;}
.y21{bottom:127.559100px;}
.y9e{bottom:129.891750px;}
.y108{bottom:130.411350px;}
.y42{bottom:133.511700px;}
.y106{bottom:144.159450px;}
.y7d{bottom:146.899500px;}
.y20{bottom:147.059100px;}
.y5c{bottom:147.797250px;}
.y12c{bottom:149.651550px;}
.y9d{bottom:152.391750px;}
.yf0{bottom:152.911350px;}
.y151{bottom:152.911500px;}
.y41{bottom:153.011700px;}
.y1f{bottom:166.559100px;}
.y105{bottom:166.659450px;}
.y7c{bottom:169.399500px;}
.y5b{bottom:170.297250px;}
.yef{bottom:170.899500px;}
.y12b{bottom:172.151550px;}
.y40{bottom:172.511700px;}
.y9c{bottom:174.891750px;}
.ye4{bottom:175.411350px;}
.y150{bottom:175.411500px;}
.y104{bottom:189.159450px;}
.y7b{bottom:191.899500px;}
.y3f{bottom:192.011700px;}
.y5a{bottom:192.797250px;}
.yee{bottom:193.399500px;}
.y12a{bottom:194.651550px;}
.y9b{bottom:197.391750px;}
.ye3{bottom:197.911350px;}
.y14f{bottom:197.911500px;}
.yb9{bottom:199.623900px;}
.ycd{bottom:211.387800px;}
.y103{bottom:211.659450px;}
.y7a{bottom:214.399500px;}
.y59{bottom:215.297250px;}
.yed{bottom:215.899500px;}
.y129{bottom:217.151550px;}
.y9a{bottom:219.891750px;}
.ye2{bottom:220.411350px;}
.y14e{bottom:220.411500px;}
.yb8{bottom:222.123900px;}
.ycc{bottom:233.887800px;}
.y102{bottom:234.159450px;}
.y79{bottom:236.899500px;}
.yec{bottom:238.399500px;}
.y1e{bottom:238.581600px;}
.y128{bottom:239.651550px;}
.y99{bottom:242.391750px;}
.ye1{bottom:242.911350px;}
.y14d{bottom:242.911500px;}
.yb7{bottom:244.623900px;}
.ycb{bottom:256.387800px;}
.y101{bottom:256.659450px;}
.y58{bottom:259.057050px;}
.y78{bottom:259.399500px;}
.yeb{bottom:260.899500px;}
.y1d{bottom:261.081600px;}
.y127{bottom:262.151550px;}
.y98{bottom:264.891750px;}
.ye0{bottom:265.411350px;}
.y14c{bottom:265.411500px;}
.yb6{bottom:267.123900px;}
.y3e{bottom:275.628000px;}
.yca{bottom:278.887800px;}
.y100{bottom:279.159450px;}
.y77{bottom:281.899500px;}
.yea{bottom:283.399500px;}
.y1c{bottom:283.581600px;}
.y126{bottom:284.651550px;}
.y97{bottom:287.391750px;}
.ydf{bottom:287.911350px;}
.y14b{bottom:287.911500px;}
.yb5{bottom:289.623900px;}
.y3d{bottom:298.128000px;}
.yc9{bottom:301.387800px;}
.yff{bottom:301.659450px;}
.y76{bottom:304.399500px;}
.ye9{bottom:305.899500px;}
.y125{bottom:307.151550px;}
.y96{bottom:309.891750px;}
.yde{bottom:310.411350px;}
.y14a{bottom:310.411500px;}
.yb4{bottom:312.123900px;}
.y3c{bottom:320.628000px;}
.yc8{bottom:323.887800px;}
.yfe{bottom:324.159450px;}
.y75{bottom:326.899500px;}
.y1b{bottom:327.336600px;}
.ye8{bottom:328.399500px;}
.y124{bottom:329.651550px;}
.y95{bottom:332.391750px;}
.ydd{bottom:332.911350px;}
.y149{bottom:332.911500px;}
.yb3{bottom:334.623900px;}
.y3b{bottom:343.128000px;}
.yfd{bottom:346.659450px;}
.y74{bottom:349.399500px;}
.y1a{bottom:349.836600px;}
.yc7{bottom:350.639700px;}
.ye7{bottom:350.899500px;}
.y123{bottom:352.151550px;}
.y94{bottom:354.891750px;}
.ydc{bottom:355.411350px;}
.y148{bottom:355.411500px;}
.yb2{bottom:357.123900px;}
.y3a{bottom:365.628000px;}
.yfc{bottom:369.159450px;}
.y73{bottom:371.899500px;}
.y19{bottom:372.336600px;}
.ye6{bottom:373.399500px;}
.y122{bottom:374.651550px;}
.y93{bottom:377.391750px;}
.ydb{bottom:377.911350px;}
.y147{bottom:377.911500px;}
.yb1{bottom:379.623900px;}
.y39{bottom:388.128000px;}
.yfb{bottom:391.659450px;}
.y72{bottom:394.399500px;}
.y18{bottom:394.836600px;}
.yc6{bottom:395.899500px;}
.y121{bottom:397.151550px;}
.y92{bottom:399.891750px;}
.ye5{bottom:400.151550px;}
.yda{bottom:400.411350px;}
.y146{bottom:400.411500px;}
.yb0{bottom:402.123900px;}
.y38{bottom:410.628000px;}
.yfa{bottom:414.159450px;}
.y71{bottom:416.899500px;}
.y17{bottom:417.336600px;}
.yc5{bottom:418.399500px;}
.y120{bottom:419.651550px;}
.y91{bottom:422.391750px;}
.yd9{bottom:422.911350px;}
.y145{bottom:422.911500px;}
.yaf{bottom:428.875950px;}
.y37{bottom:433.128000px;}
.yf9{bottom:436.659450px;}
.y70{bottom:439.399500px;}
.y16{bottom:439.836600px;}
.yc4{bottom:440.899500px;}
.y11f{bottom:442.151550px;}
.y57{bottom:443.124900px;}
.y90{bottom:444.891750px;}
.yd8{bottom:445.411350px;}
.y144{bottom:445.411500px;}
.y36{bottom:455.628000px;}
.yf8{bottom:459.159450px;}
.y6f{bottom:461.899500px;}
.yc3{bottom:463.399500px;}
.y11e{bottom:464.651550px;}
.y56{bottom:465.624900px;}
.y8f{bottom:467.391750px;}
.yd7{bottom:467.911350px;}
.y143{bottom:467.911500px;}
.yae{bottom:474.128700px;}
.y35{bottom:478.128000px;}
.yf7{bottom:481.659450px;}
.y6e{bottom:484.399500px;}
.yc2{bottom:485.899500px;}
.y11d{bottom:487.151550px;}
.y8e{bottom:489.891750px;}
.yd6{bottom:490.411350px;}
.y142{bottom:490.411500px;}
.yf6{bottom:504.159450px;}
.y15{bottom:504.861150px;}
.y34{bottom:504.879900px;}
.y6d{bottom:506.899500px;}
.yc1{bottom:508.399500px;}
.y55{bottom:509.379900px;}
.y11c{bottom:509.651550px;}
.y8d{bottom:512.391750px;}
.yd5{bottom:512.911350px;}
.y141{bottom:512.911500px;}
.yad{bottom:520.895700px;}
.yf5{bottom:526.659450px;}
.y6c{bottom:529.399500px;}
.y14{bottom:530.355150px;}
.yc0{bottom:530.899500px;}
.y54{bottom:531.879900px;}
.y11b{bottom:532.151550px;}
.y12d{bottom:533.651550px;}
.y8c{bottom:534.891750px;}
.yd4{bottom:535.411350px;}
.y140{bottom:535.411500px;}
.yf4{bottom:549.159450px;}
.y6b{bottom:551.899500px;}
.ybf{bottom:553.399500px;}
.y53{bottom:554.379900px;}
.y11a{bottom:554.651550px;}
.y8b{bottom:557.391750px;}
.yd3{bottom:557.911350px;}
.y13f{bottom:557.911500px;}
.yf3{bottom:571.659450px;}
.yac{bottom:571.914450px;}
.y33{bottom:572.904450px;}
.y6a{bottom:574.399500px;}
.ybe{bottom:575.899500px;}
.y52{bottom:576.879900px;}
.y13{bottom:577.122150px;}
.y119{bottom:577.151550px;}
.y8a{bottom:579.891750px;}
.yd2{bottom:580.411350px;}
.y13e{bottom:580.411500px;}
.yf2{bottom:594.159450px;}
.yab{bottom:594.414450px;}
.y32{bottom:595.404450px;}
.y69{bottom:596.899500px;}
.ybd{bottom:598.399500px;}
.y51{bottom:599.379900px;}
.y118{bottom:599.651550px;}
.y89{bottom:602.391750px;}
.y12{bottom:602.616150px;}
.yd1{bottom:602.911350px;}
.y13d{bottom:602.911500px;}
.yf1{bottom:616.659450px;}
.yaa{bottom:616.914450px;}
.y68{bottom:619.399500px;}
.ybc{bottom:620.899500px;}
.y50{bottom:621.879900px;}
.y117{bottom:622.151550px;}
.y88{bottom:624.891750px;}
.yd0{bottom:625.411350px;}
.y13c{bottom:625.411500px;}
.y31{bottom:639.159450px;}
.ya9{bottom:639.414450px;}
.y67{bottom:641.899500px;}
.y4f{bottom:644.379900px;}
.y116{bottom:644.651550px;}
.y87{bottom:647.391750px;}
.ybb{bottom:647.651550px;}
.ycf{bottom:647.911350px;}
.y13b{bottom:647.911500px;}
.y30{bottom:661.659450px;}
.ya8{bottom:661.914450px;}
.y11{bottom:662.081550px;}
.y4e{bottom:666.879900px;}
.y115{bottom:667.151550px;}
.y66{bottom:668.651550px;}
.y86{bottom:669.891750px;}
.yce{bottom:670.411350px;}
.y13a{bottom:670.411500px;}
.y2f{bottom:684.159450px;}
.ya7{bottom:684.414450px;}
.y4d{bottom:689.379900px;}
.y114{bottom:689.651550px;}
.y85{bottom:692.391750px;}
.yba{bottom:692.911350px;}
.y139{bottom:692.911500px;}
.y2e{bottom:706.659450px;}
.y10{bottom:710.098350px;}
.ya6{bottom:711.159450px;}
.y4c{bottom:711.879900px;}
.y113{bottom:712.151550px;}
.y84{bottom:714.891750px;}
.y65{bottom:715.411350px;}
.y138{bottom:715.411500px;}
.y2d{bottom:729.159450px;}
.ya5{bottom:733.659450px;}
.y4b{bottom:734.379900px;}
.y112{bottom:734.651550px;}
.y83{bottom:737.391750px;}
.y64{bottom:737.911350px;}
.y137{bottom:737.911500px;}
.y2c{bottom:751.659450px;}
.ya4{bottom:756.159450px;}
.y4a{bottom:756.879900px;}
.y111{bottom:757.151550px;}
.yf{bottom:758.115150px;}
.y82{bottom:759.891750px;}
.y63{bottom:760.411350px;}
.y136{bottom:760.411500px;}
.y2b{bottom:774.159450px;}
.ya3{bottom:778.659450px;}
.y49{bottom:779.379900px;}
.y110{bottom:779.651550px;}
.y81{bottom:782.391750px;}
.y62{bottom:782.911350px;}
.y135{bottom:782.911500px;}
.y2a{bottom:796.659450px;}
.ya2{bottom:801.159450px;}
.y48{bottom:801.879900px;}
.y10f{bottom:802.151550px;}
.y80{bottom:804.891750px;}
.y61{bottom:805.411350px;}
.y134{bottom:805.411500px;}
.ye{bottom:806.131950px;}
.y29{bottom:819.159450px;}
.ya1{bottom:823.659450px;}
.y10e{bottom:824.651550px;}
.y7f{bottom:827.391750px;}
.y60{bottom:827.911350px;}
.y133{bottom:827.911500px;}
.y47{bottom:828.631950px;}
.y28{bottom:841.659450px;}
.ya0{bottom:846.159450px;}
.y10d{bottom:847.151550px;}
.y5f{bottom:850.411350px;}
.y132{bottom:850.411500px;}
.y27{bottom:864.159450px;}
.y9f{bottom:868.666350px;}
.y10c{bottom:869.651550px;}
.y7e{bottom:871.151550px;}
.y5e{bottom:872.911350px;}
.y131{bottom:872.911500px;}
.y26{bottom:886.659450px;}
.y10b{bottom:892.151550px;}
.y5d{bottom:895.411350px;}
.y130{bottom:895.411500px;}
.y46{bottom:896.656500px;}
.y25{bottom:909.159450px;}
.y10a{bottom:914.651550px;}
.yd{bottom:917.911350px;}
.y12f{bottom:917.911500px;}
.y45{bottom:919.156500px;}
.y24{bottom:931.659450px;}
.y109{bottom:937.151550px;}
.yc{bottom:940.411350px;}
.y12e{bottom:940.411500px;}
.y23{bottom:954.159450px;}
.yb{bottom:962.911350px;}
.y44{bottom:962.911500px;}
.y22{bottom:980.911350px;}
.ya{bottom:985.411350px;}
.y43{bottom:985.411500px;}
.y7{bottom:1061.698350px;}
.y6{bottom:1075.198350px;}
.y5{bottom:1088.698350px;}
.y4{bottom:1102.198350px;}
.y8{bottom:1109.093400px;}
.y3{bottom:1115.698350px;}
.y2{bottom:1129.198350px;}
.y9{bottom:1147.587690px;}
.h2{height:29.448000px;}
.h6{height:48.960000px;}
.h4{height:49.080000px;}
.h8{height:56.472000px;}
.h9{height:63.648000px;}
.h7{height:63.804000px;}
.h3{height:66.210179px;}
.h5{height:68.712000px;}
.h1{height:125.890200px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.x3{left:123.094500px;}
.x4{left:131.811000px;}
.x8{left:133.295550px;}
.x7{left:157.322850px;}
.x9{left:160.303350px;}
.x6{left:252.992100px;}
.x2{left:433.686600px;}
.xa{left:439.685850px;}
.x1{left:449.439000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.759467pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.310880pt;}
.ls6{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.772267pt;}
.lsa{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.368000pt;}
.ls0{letter-spacing:4.025547pt;}
.ws22{word-spacing:-15.082667pt;}
.wsb{word-spacing:-14.336000pt;}
.ws3{word-spacing:-10.773333pt;}
.ws4c{word-spacing:-10.240000pt;}
.ws67{word-spacing:-9.706667pt;}
.ws4{word-spacing:-7.541333pt;}
.ws1{word-spacing:-6.464000pt;}
.ws0{word-spacing:-4.524800pt;}
.ws2{word-spacing:-4.106058pt;}
.ws6{word-spacing:-4.025547pt;}
.ws38{word-spacing:-2.773333pt;}
.ws35{word-spacing:-2.453333pt;}
.ws39{word-spacing:-2.133333pt;}
.ws4a{word-spacing:-2.026667pt;}
.ws75{word-spacing:-1.973333pt;}
.ws37{word-spacing:-1.813333pt;}
.ws4e{word-spacing:-1.760000pt;}
.ws7f{word-spacing:-1.706667pt;}
.ws53{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.568000pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.493333pt;}
.ws68{word-spacing:-1.440000pt;}
.ws28{word-spacing:-1.386667pt;}
.ws6c{word-spacing:-1.368000pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.226667pt;}
.ws3f{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.120000pt;}
.ws71{word-spacing:-1.066667pt;}
.ws54{word-spacing:-1.040000pt;}
.ws94{word-spacing:-1.013333pt;}
.ws40{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.906667pt;}
.ws63{word-spacing:-0.853333pt;}
.ws26{word-spacing:-0.800000pt;}
.ws72{word-spacing:-0.746667pt;}
.ws8f{word-spacing:-0.693333pt;}
.ws31{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.533333pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws85{word-spacing:-0.426667pt;}
.ws5b{word-spacing:-0.373333pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws2f{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.213333pt;}
.ws1b{word-spacing:-0.160000pt;}
.ws43{word-spacing:-0.106667pt;}
.ws32{word-spacing:-0.053333pt;}
.ws58{word-spacing:-0.048533pt;}
.ws90{word-spacing:-0.037333pt;}
.ws5{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053333pt;}
.ws20{word-spacing:0.106667pt;}
.ws86{word-spacing:0.160000pt;}
.ws34{word-spacing:0.213333pt;}
.ws8{word-spacing:0.266667pt;}
.ws7{word-spacing:0.320000pt;}
.ws65{word-spacing:0.373333pt;}
.ws70{word-spacing:0.426667pt;}
.ws5e{word-spacing:0.480000pt;}
.ws50{word-spacing:0.533333pt;}
.ws10{word-spacing:0.586667pt;}
.ws89{word-spacing:0.640000pt;}
.ws5c{word-spacing:0.693333pt;}
.ws3e{word-spacing:0.746667pt;}
.ws2a{word-spacing:0.800000pt;}
.ws3a{word-spacing:0.853333pt;}
.ws7e{word-spacing:0.906667pt;}
.ws21{word-spacing:0.960000pt;}
.ws14{word-spacing:1.013333pt;}
.ws1f{word-spacing:1.066667pt;}
.ws3c{word-spacing:1.120000pt;}
.ws4d{word-spacing:1.173333pt;}
.ws16{word-spacing:1.226667pt;}
.ws49{word-spacing:1.280000pt;}
.wsd{word-spacing:1.333333pt;}
.ws57{word-spacing:1.386667pt;}
.ws83{word-spacing:1.440000pt;}
.ws64{word-spacing:1.493333pt;}
.ws59{word-spacing:1.546667pt;}
.ws5a{word-spacing:1.600000pt;}
.ws6e{word-spacing:1.653333pt;}
.ws78{word-spacing:1.706667pt;}
.ws69{word-spacing:1.760000pt;}
.ws82{word-spacing:1.813333pt;}
.ws12{word-spacing:1.866667pt;}
.ws6f{word-spacing:1.920000pt;}
.ws11{word-spacing:1.973333pt;}
.ws1d{word-spacing:2.026667pt;}
.ws8c{word-spacing:2.080000pt;}
.ws77{word-spacing:2.133333pt;}
.ws1a{word-spacing:2.186667pt;}
.ws47{word-spacing:2.293333pt;}
.ws23{word-spacing:2.346667pt;}
.ws3d{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.720000pt;}
.ws2b{word-spacing:2.773333pt;}
.ws95{word-spacing:2.826667pt;}
.ws55{word-spacing:2.880000pt;}
.ws46{word-spacing:2.933333pt;}
.ws24{word-spacing:2.986667pt;}
.ws48{word-spacing:3.040000pt;}
.ws25{word-spacing:3.093333pt;}
.ws36{word-spacing:3.146667pt;}
.ws42{word-spacing:3.200000pt;}
.ws62{word-spacing:3.253333pt;}
.ws7b{word-spacing:3.306667pt;}
.ws41{word-spacing:3.360000pt;}
.ws5f{word-spacing:3.413333pt;}
.ws6d{word-spacing:3.466667pt;}
.ws80{word-spacing:3.520000pt;}
.ws45{word-spacing:3.573333pt;}
.ws8b{word-spacing:3.626667pt;}
.ws19{word-spacing:3.680000pt;}
.ws87{word-spacing:3.733333pt;}
.ws56{word-spacing:3.786667pt;}
.ws52{word-spacing:3.840000pt;}
.ws33{word-spacing:3.893333pt;}
.ws18{word-spacing:4.000000pt;}
.ws76{word-spacing:4.160000pt;}
.ws6b{word-spacing:4.213333pt;}
.ws2c{word-spacing:4.373333pt;}
.ws88{word-spacing:4.426667pt;}
.ws3b{word-spacing:4.533333pt;}
.ws79{word-spacing:4.586667pt;}
.ws66{word-spacing:4.693333pt;}
.ws6a{word-spacing:4.800000pt;}
.ws61{word-spacing:5.013333pt;}
.ws13{word-spacing:5.066667pt;}
.ws30{word-spacing:5.120000pt;}
.wsc{word-spacing:5.333333pt;}
.ws44{word-spacing:5.760000pt;}
.ws84{word-spacing:5.813333pt;}
.ws7c{word-spacing:5.866667pt;}
.ws81{word-spacing:5.920000pt;}
.wse{word-spacing:5.973333pt;}
.ws73{word-spacing:6.026667pt;}
.ws4f{word-spacing:6.080000pt;}
.ws60{word-spacing:6.133333pt;}
.ws7d{word-spacing:6.506667pt;}
.ws9b{word-spacing:6.560000pt;}
.ws9a{word-spacing:6.880000pt;}
.ws51{word-spacing:7.466667pt;}
.ws8e{word-spacing:7.733333pt;}
.ws8d{word-spacing:8.106667pt;}
.ws97{word-spacing:8.160000pt;}
.ws8a{word-spacing:8.213333pt;}
.ws98{word-spacing:8.373333pt;}
.ws91{word-spacing:8.480000pt;}
.ws96{word-spacing:8.640000pt;}
.ws99{word-spacing:8.800000pt;}
.ws93{word-spacing:9.386667pt;}
.ws92{word-spacing:9.866667pt;}
._8{margin-left:-9.042133pt;}
._5{margin-left:-8.092800pt;}
._2{margin-left:-6.411806pt;}
._7{margin-left:-4.514133pt;}
._6{margin-left:-3.556800pt;}
._3{margin-left:-2.364800pt;}
._0{margin-left:-0.995200pt;}
._1{width:0.960000pt;}
._4{width:1.948800pt;}
._a{width:3.576533pt;}
._b{width:4.707200pt;}
._e{width:5.804800pt;}
._c{width:7.496533pt;}
._11{width:8.563200pt;}
._14{width:14.274133pt;}
._13{width:15.277867pt;}
._15{width:18.933333pt;}
._16{width:20.533333pt;}
._12{width:44.373333pt;}
._f{width:45.440000pt;}
._10{width:46.506667pt;}
._d{width:54.560000pt;}
._9{width:57.653333pt;}
.fs2{font-size:22.400000pt;}
.fs7{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:48.533333pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:80.510933pt;}
.fs0{font-size:136.800000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.052533pt;}
.y107{bottom:108.141733pt;}
.y21{bottom:113.385867pt;}
.y9e{bottom:115.459333pt;}
.y108{bottom:115.921200pt;}
.y42{bottom:118.677067pt;}
.y106{bottom:128.141733pt;}
.y7d{bottom:130.577333pt;}
.y20{bottom:130.719200pt;}
.y5c{bottom:131.375333pt;}
.y12c{bottom:133.023600pt;}
.y9d{bottom:135.459333pt;}
.yf0{bottom:135.921200pt;}
.y151{bottom:135.921333pt;}
.y41{bottom:136.010400pt;}
.y1f{bottom:148.052533pt;}
.y105{bottom:148.141733pt;}
.y7c{bottom:150.577333pt;}
.y5b{bottom:151.375333pt;}
.yef{bottom:151.910667pt;}
.y12b{bottom:153.023600pt;}
.y40{bottom:153.343733pt;}
.y9c{bottom:155.459333pt;}
.ye4{bottom:155.921200pt;}
.y150{bottom:155.921333pt;}
.y104{bottom:168.141733pt;}
.y7b{bottom:170.577333pt;}
.y3f{bottom:170.677067pt;}
.y5a{bottom:171.375333pt;}
.yee{bottom:171.910667pt;}
.y12a{bottom:173.023600pt;}
.y9b{bottom:175.459333pt;}
.ye3{bottom:175.921200pt;}
.y14f{bottom:175.921333pt;}
.yb9{bottom:177.443467pt;}
.ycd{bottom:187.900267pt;}
.y103{bottom:188.141733pt;}
.y7a{bottom:190.577333pt;}
.y59{bottom:191.375333pt;}
.yed{bottom:191.910667pt;}
.y129{bottom:193.023600pt;}
.y9a{bottom:195.459333pt;}
.ye2{bottom:195.921200pt;}
.y14e{bottom:195.921333pt;}
.yb8{bottom:197.443467pt;}
.ycc{bottom:207.900267pt;}
.y102{bottom:208.141733pt;}
.y79{bottom:210.577333pt;}
.yec{bottom:211.910667pt;}
.y1e{bottom:212.072533pt;}
.y128{bottom:213.023600pt;}
.y99{bottom:215.459333pt;}
.ye1{bottom:215.921200pt;}
.y14d{bottom:215.921333pt;}
.yb7{bottom:217.443467pt;}
.ycb{bottom:227.900267pt;}
.y101{bottom:228.141733pt;}
.y58{bottom:230.272933pt;}
.y78{bottom:230.577333pt;}
.yeb{bottom:231.910667pt;}
.y1d{bottom:232.072533pt;}
.y127{bottom:233.023600pt;}
.y98{bottom:235.459333pt;}
.ye0{bottom:235.921200pt;}
.y14c{bottom:235.921333pt;}
.yb6{bottom:237.443467pt;}
.y3e{bottom:245.002667pt;}
.yca{bottom:247.900267pt;}
.y100{bottom:248.141733pt;}
.y77{bottom:250.577333pt;}
.yea{bottom:251.910667pt;}
.y1c{bottom:252.072533pt;}
.y126{bottom:253.023600pt;}
.y97{bottom:255.459333pt;}
.ydf{bottom:255.921200pt;}
.y14b{bottom:255.921333pt;}
.yb5{bottom:257.443467pt;}
.y3d{bottom:265.002667pt;}
.yc9{bottom:267.900267pt;}
.yff{bottom:268.141733pt;}
.y76{bottom:270.577333pt;}
.ye9{bottom:271.910667pt;}
.y125{bottom:273.023600pt;}
.y96{bottom:275.459333pt;}
.yde{bottom:275.921200pt;}
.y14a{bottom:275.921333pt;}
.yb4{bottom:277.443467pt;}
.y3c{bottom:285.002667pt;}
.yc8{bottom:287.900267pt;}
.yfe{bottom:288.141733pt;}
.y75{bottom:290.577333pt;}
.y1b{bottom:290.965867pt;}
.ye8{bottom:291.910667pt;}
.y124{bottom:293.023600pt;}
.y95{bottom:295.459333pt;}
.ydd{bottom:295.921200pt;}
.y149{bottom:295.921333pt;}
.yb3{bottom:297.443467pt;}
.y3b{bottom:305.002667pt;}
.yfd{bottom:308.141733pt;}
.y74{bottom:310.577333pt;}
.y1a{bottom:310.965867pt;}
.yc7{bottom:311.679733pt;}
.ye7{bottom:311.910667pt;}
.y123{bottom:313.023600pt;}
.y94{bottom:315.459333pt;}
.ydc{bottom:315.921200pt;}
.y148{bottom:315.921333pt;}
.yb2{bottom:317.443467pt;}
.y3a{bottom:325.002667pt;}
.yfc{bottom:328.141733pt;}
.y73{bottom:330.577333pt;}
.y19{bottom:330.965867pt;}
.ye6{bottom:331.910667pt;}
.y122{bottom:333.023600pt;}
.y93{bottom:335.459333pt;}
.ydb{bottom:335.921200pt;}
.y147{bottom:335.921333pt;}
.yb1{bottom:337.443467pt;}
.y39{bottom:345.002667pt;}
.yfb{bottom:348.141733pt;}
.y72{bottom:350.577333pt;}
.y18{bottom:350.965867pt;}
.yc6{bottom:351.910667pt;}
.y121{bottom:353.023600pt;}
.y92{bottom:355.459333pt;}
.ye5{bottom:355.690267pt;}
.yda{bottom:355.921200pt;}
.y146{bottom:355.921333pt;}
.yb0{bottom:357.443467pt;}
.y38{bottom:365.002667pt;}
.yfa{bottom:368.141733pt;}
.y71{bottom:370.577333pt;}
.y17{bottom:370.965867pt;}
.yc5{bottom:371.910667pt;}
.y120{bottom:373.023600pt;}
.y91{bottom:375.459333pt;}
.yd9{bottom:375.921200pt;}
.y145{bottom:375.921333pt;}
.yaf{bottom:381.223067pt;}
.y37{bottom:385.002667pt;}
.yf9{bottom:388.141733pt;}
.y70{bottom:390.577333pt;}
.y16{bottom:390.965867pt;}
.yc4{bottom:391.910667pt;}
.y11f{bottom:393.023600pt;}
.y57{bottom:393.888800pt;}
.y90{bottom:395.459333pt;}
.yd8{bottom:395.921200pt;}
.y144{bottom:395.921333pt;}
.y36{bottom:405.002667pt;}
.yf8{bottom:408.141733pt;}
.y6f{bottom:410.577333pt;}
.yc3{bottom:411.910667pt;}
.y11e{bottom:413.023600pt;}
.y56{bottom:413.888800pt;}
.y8f{bottom:415.459333pt;}
.yd7{bottom:415.921200pt;}
.y143{bottom:415.921333pt;}
.yae{bottom:421.447733pt;}
.y35{bottom:425.002667pt;}
.yf7{bottom:428.141733pt;}
.y6e{bottom:430.577333pt;}
.yc2{bottom:431.910667pt;}
.y11d{bottom:433.023600pt;}
.y8e{bottom:435.459333pt;}
.yd6{bottom:435.921200pt;}
.y142{bottom:435.921333pt;}
.yf6{bottom:448.141733pt;}
.y15{bottom:448.765467pt;}
.y34{bottom:448.782133pt;}
.y6d{bottom:450.577333pt;}
.yc1{bottom:451.910667pt;}
.y55{bottom:452.782133pt;}
.y11c{bottom:453.023600pt;}
.y8d{bottom:455.459333pt;}
.yd5{bottom:455.921200pt;}
.y141{bottom:455.921333pt;}
.yad{bottom:463.018400pt;}
.yf5{bottom:468.141733pt;}
.y6c{bottom:470.577333pt;}
.y14{bottom:471.426800pt;}
.yc0{bottom:471.910667pt;}
.y54{bottom:472.782133pt;}
.y11b{bottom:473.023600pt;}
.y12d{bottom:474.356933pt;}
.y8c{bottom:475.459333pt;}
.yd4{bottom:475.921200pt;}
.y140{bottom:475.921333pt;}
.yf4{bottom:488.141733pt;}
.y6b{bottom:490.577333pt;}
.ybf{bottom:491.910667pt;}
.y53{bottom:492.782133pt;}
.y11a{bottom:493.023600pt;}
.y8b{bottom:495.459333pt;}
.yd3{bottom:495.921200pt;}
.y13f{bottom:495.921333pt;}
.yf3{bottom:508.141733pt;}
.yac{bottom:508.368400pt;}
.y33{bottom:509.248400pt;}
.y6a{bottom:510.577333pt;}
.ybe{bottom:511.910667pt;}
.y52{bottom:512.782133pt;}
.y13{bottom:512.997467pt;}
.y119{bottom:513.023600pt;}
.y8a{bottom:515.459333pt;}
.yd2{bottom:515.921200pt;}
.y13e{bottom:515.921333pt;}
.yf2{bottom:528.141733pt;}
.yab{bottom:528.368400pt;}
.y32{bottom:529.248400pt;}
.y69{bottom:530.577333pt;}
.ybd{bottom:531.910667pt;}
.y51{bottom:532.782133pt;}
.y118{bottom:533.023600pt;}
.y89{bottom:535.459333pt;}
.y12{bottom:535.658800pt;}
.yd1{bottom:535.921200pt;}
.y13d{bottom:535.921333pt;}
.yf1{bottom:548.141733pt;}
.yaa{bottom:548.368400pt;}
.y68{bottom:550.577333pt;}
.ybc{bottom:551.910667pt;}
.y50{bottom:552.782133pt;}
.y117{bottom:553.023600pt;}
.y88{bottom:555.459333pt;}
.yd0{bottom:555.921200pt;}
.y13c{bottom:555.921333pt;}
.y31{bottom:568.141733pt;}
.ya9{bottom:568.368400pt;}
.y67{bottom:570.577333pt;}
.y4f{bottom:572.782133pt;}
.y116{bottom:573.023600pt;}
.y87{bottom:575.459333pt;}
.ybb{bottom:575.690267pt;}
.ycf{bottom:575.921200pt;}
.y13b{bottom:575.921333pt;}
.y30{bottom:588.141733pt;}
.ya8{bottom:588.368400pt;}
.y11{bottom:588.516933pt;}
.y4e{bottom:592.782133pt;}
.y115{bottom:593.023600pt;}
.y66{bottom:594.356933pt;}
.y86{bottom:595.459333pt;}
.yce{bottom:595.921200pt;}
.y13a{bottom:595.921333pt;}
.y2f{bottom:608.141733pt;}
.ya7{bottom:608.368400pt;}
.y4d{bottom:612.782133pt;}
.y114{bottom:613.023600pt;}
.y85{bottom:615.459333pt;}
.yba{bottom:615.921200pt;}
.y139{bottom:615.921333pt;}
.y2e{bottom:628.141733pt;}
.y10{bottom:631.198533pt;}
.ya6{bottom:632.141733pt;}
.y4c{bottom:632.782133pt;}
.y113{bottom:633.023600pt;}
.y84{bottom:635.459333pt;}
.y65{bottom:635.921200pt;}
.y138{bottom:635.921333pt;}
.y2d{bottom:648.141733pt;}
.ya5{bottom:652.141733pt;}
.y4b{bottom:652.782133pt;}
.y112{bottom:653.023600pt;}
.y83{bottom:655.459333pt;}
.y64{bottom:655.921200pt;}
.y137{bottom:655.921333pt;}
.y2c{bottom:668.141733pt;}
.ya4{bottom:672.141733pt;}
.y4a{bottom:672.782133pt;}
.y111{bottom:673.023600pt;}
.yf{bottom:673.880133pt;}
.y82{bottom:675.459333pt;}
.y63{bottom:675.921200pt;}
.y136{bottom:675.921333pt;}
.y2b{bottom:688.141733pt;}
.ya3{bottom:692.141733pt;}
.y49{bottom:692.782133pt;}
.y110{bottom:693.023600pt;}
.y81{bottom:695.459333pt;}
.y62{bottom:695.921200pt;}
.y135{bottom:695.921333pt;}
.y2a{bottom:708.141733pt;}
.ya2{bottom:712.141733pt;}
.y48{bottom:712.782133pt;}
.y10f{bottom:713.023600pt;}
.y80{bottom:715.459333pt;}
.y61{bottom:715.921200pt;}
.y134{bottom:715.921333pt;}
.ye{bottom:716.561733pt;}
.y29{bottom:728.141733pt;}
.ya1{bottom:732.141733pt;}
.y10e{bottom:733.023600pt;}
.y7f{bottom:735.459333pt;}
.y60{bottom:735.921200pt;}
.y133{bottom:735.921333pt;}
.y47{bottom:736.561733pt;}
.y28{bottom:748.141733pt;}
.ya0{bottom:752.141733pt;}
.y10d{bottom:753.023600pt;}
.y5f{bottom:755.921200pt;}
.y132{bottom:755.921333pt;}
.y27{bottom:768.141733pt;}
.y9f{bottom:772.147867pt;}
.y10c{bottom:773.023600pt;}
.y7e{bottom:774.356933pt;}
.y5e{bottom:775.921200pt;}
.y131{bottom:775.921333pt;}
.y26{bottom:788.141733pt;}
.y10b{bottom:793.023600pt;}
.y5d{bottom:795.921200pt;}
.y130{bottom:795.921333pt;}
.y46{bottom:797.028000pt;}
.y25{bottom:808.141733pt;}
.y10a{bottom:813.023600pt;}
.yd{bottom:815.921200pt;}
.y12f{bottom:815.921333pt;}
.y45{bottom:817.028000pt;}
.y24{bottom:828.141733pt;}
.y109{bottom:833.023600pt;}
.yc{bottom:835.921200pt;}
.y12e{bottom:835.921333pt;}
.y23{bottom:848.141733pt;}
.yb{bottom:855.921200pt;}
.y44{bottom:855.921333pt;}
.y22{bottom:871.921200pt;}
.ya{bottom:875.921200pt;}
.y43{bottom:875.921333pt;}
.y7{bottom:943.731867pt;}
.y6{bottom:955.731867pt;}
.y5{bottom:967.731867pt;}
.y4{bottom:979.731867pt;}
.y8{bottom:985.860800pt;}
.y3{bottom:991.731867pt;}
.y2{bottom:1003.731867pt;}
.y9{bottom:1020.077947pt;}
.h2{height:26.176000pt;}
.h6{height:43.520000pt;}
.h4{height:43.626667pt;}
.h8{height:50.197333pt;}
.h9{height:56.576000pt;}
.h7{height:56.714667pt;}
.h3{height:58.853492pt;}
.h5{height:61.077333pt;}
.h1{height:111.902400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.x3{left:109.417333pt;}
.x4{left:117.165333pt;}
.x8{left:118.484933pt;}
.x7{left:139.842533pt;}
.x9{left:142.491867pt;}
.x6{left:224.881867pt;}
.x2{left:385.499200pt;}
.xa{left:390.831867pt;}
.x1{left:399.501333pt;}
}

