
    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_48f14aac499387eae3662523.woff')format("woff");}.ff1{font-family:ff1;line-height:0.693359;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_7faed8a125a8c9c7230fc20f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.206055;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_c78c19a9a44ca329ef1c0d6a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010742;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_2b5118ea491797c13065e76e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_f8745ceef09a1ccac879d4c5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.197754;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_475b47260bbfa06c762769d3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_4cab3134971fb61ba05d70fe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_5db63d577bcc41bca97f6a5c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.846000px;}
.ls26{letter-spacing:-0.792000px;}
.ls27{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.672000px;}
.ls16{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.513600px;}
.ls1e{letter-spacing:-0.362400px;}
.ls9{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.337200px;}
.ls5{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.253200px;}
.ls22{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.138000px;}
.lsa{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.041760px;}
.ls4{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.084000px;}
.ls11{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.232560px;}
.ls1d{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.309600px;}
.ls1f{letter-spacing:0.357600px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.439920px;}
.ls20{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls13{letter-spacing:6.480000px;}
.lsb{letter-spacing:9.360000px;}
.ls1a{letter-spacing:71.460000px;}
.ls12{letter-spacing:101.700000px;}
.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;}
}
.ws13{word-spacing:-75.893905px;}
.ws10{word-spacing:-59.760000px;}
.ws14{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws1f{word-spacing:-17.280000px;}
.ws1e{word-spacing:-17.208000px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.024000px;}
.ws0{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.898240px;}
.wse{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.802000px;}
.ws16{word-spacing:-14.686800px;}
.ws8{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.426400px;}
.ws1d{word-spacing:-14.220000px;}
.ws19{word-spacing:-12.417600px;}
.ws12{word-spacing:-12.162000px;}
.ws1b{word-spacing:-12.105360px;}
.ws9{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.934000px;}
.wsd{word-spacing:-11.722800px;}
.ws18{word-spacing:-11.697600px;}
.ws1c{word-spacing:-11.388000px;}
.ws11{word-spacing:-11.214000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-1.080000px;}
._0{width:1.061040px;}
._3{width:2.224080px;}
._15{width:3.247920px;}
._d{width:4.248000px;}
._e{width:5.400000px;}
._f{width:6.408000px;}
._13{width:7.416000px;}
._1a{width:8.533920px;}
._5{width:9.792000px;}
._c{width:10.890960px;}
._14{width:12.384000px;}
._1e{width:13.638960px;}
._8{width:14.688000px;}
._7{width:16.056000px;}
._b{width:19.368000px;}
._19{width:20.568000px;}
._1f{width:21.672000px;}
._1c{width:23.208000px;}
._1b{width:24.384000px;}
._3f{width:25.536000px;}
._3a{width:27.144000px;}
._22{width:28.224000px;}
._18{width:29.592000px;}
._17{width:30.888000px;}
._9{width:32.400000px;}
._a{width:33.771840px;}
._28{width:35.132160px;}
._21{width:36.432000px;}
._20{width:37.512000px;}
._27{width:38.592000px;}
._10{width:39.672000px;}
._12{width:40.758960px;}
._11{width:41.772000px;}
._40{width:42.840000px;}
._6{width:45.000000px;}
._41{width:46.656000px;}
._16{width:49.320000px;}
._24{width:54.000000px;}
._23{width:55.008000px;}
._25{width:65.352000px;}
._26{width:66.949920px;}
._38{width:69.335040px;}
._2a{width:70.596000px;}
._29{width:71.784000px;}
._30{width:73.099920px;}
._31{width:81.484320px;}
._3e{width:82.857120px;}
._34{width:84.275040px;}
._3d{width:90.681840px;}
._32{width:94.016160px;}
._2d{width:96.226560px;}
._39{width:98.084400px;}
._33{width:100.515600px;}
._35{width:112.062960px;}
._3b{width:113.243280px;}
._37{width:117.501120px;}
._2c{width:119.294640px;}
._2f{width:122.040000px;}
._2b{width:133.066560px;}
._36{width:134.677200px;}
._2e{width:135.727920px;}
._3c{width:148.478880px;}
._1d{width:197.342400px;}
._1{width:395.425440px;}
._2{width:868.634400px;}
._44{width:1937.922960px;}
._42{width:2048.136000px;}
._43{width:2103.720000px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(23,54,93);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y27{bottom:5.040000px;}
.y25{bottom:5.580000px;}
.y2{bottom:93.780000px;}
.y1{bottom:118.620000px;}
.y7d{bottom:149.040000px;}
.ye1{bottom:154.620000px;}
.yef{bottom:156.240000px;}
.ya0{bottom:158.040000px;}
.y22{bottom:170.820000px;}
.yc0{bottom:177.840000px;}
.y7c{bottom:178.200000px;}
.y49{bottom:179.820000px;}
.y11f{bottom:180.540000px;}
.yfb{bottom:182.700000px;}
.ye0{bottom:183.780000px;}
.yee{bottom:185.580000px;}
.y9f{bottom:187.200000px;}
.y65{bottom:196.380000px;}
.y11e{bottom:204.840000px;}
.y21{bottom:205.740000px;}
.ybf{bottom:207.000000px;}
.y7b{bottom:207.180000px;}
.y48{bottom:208.980000px;}
.yed{bottom:210.240000px;}
.ydf{bottom:212.940000px;}
.y9e{bottom:219.450000px;}
.y64{bottom:225.570000px;}
.yec{bottom:230.430000px;}
.y11d{bottom:233.670000px;}
.y20{bottom:234.930000px;}
.yfa{bottom:235.830000px;}
.ybe{bottom:236.190000px;}
.y47{bottom:238.170000px;}
.yde{bottom:242.130000px;}
.y7a{bottom:245.370000px;}
.y9d{bottom:248.790000px;}
.y63{bottom:254.730000px;}
.y11c{bottom:257.970000px;}
.yf9{bottom:260.130000px;}
.y1f{bottom:264.090000px;}
.ybd{bottom:265.350000px;}
.yeb{bottom:265.530000px;}
.y46{bottom:267.330000px;}
.y9c{bottom:268.950000px;}
.ydd{bottom:271.290000px;}
.y79{bottom:274.530000px;}
.y11b{bottom:286.770000px;}
.yf8{bottom:288.930000px;}
.y62{bottom:291.090000px;}
.y1e{bottom:293.250000px;}
.yea{bottom:294.690000px;}
.y45{bottom:296.490000px;}
.ydc{bottom:300.450000px;}
.ybc{bottom:303.510000px;}
.y78{bottom:303.690000px;}
.y9b{bottom:304.050000px;}
.y11a{bottom:311.070000px;}
.yf7{bottom:313.230000px;}
.y61{bottom:315.930000px;}
.y1d{bottom:322.410000px;}
.ye9{bottom:323.850000px;}
.y44{bottom:328.710000px;}
.ydb{bottom:329.610000px;}
.ybb{bottom:332.490000px;}
.y77{bottom:332.850000px;}
.y9a{bottom:333.210000px;}
.y119{bottom:335.370000px;}
.y60{bottom:336.270000px;}
.yf6{bottom:342.030000px;}
.y1c{bottom:351.570000px;}
.ye8{bottom:353.010000px;}
.y43{bottom:353.370000px;}
.yda{bottom:358.770000px;}
.yba{bottom:361.650000px;}
.y76{bottom:362.010000px;}
.y99{bottom:362.370000px;}
.y118{bottom:364.170000px;}
.yf5{bottom:366.330000px;}
.y5f{bottom:369.390000px;}
.y42{bottom:373.890000px;}
.y1b{bottom:380.730000px;}
.ye7{bottom:382.170000px;}
.y117{bottom:388.470000px;}
.yb9{bottom:390.810000px;}
.y75{bottom:391.170000px;}
.y98{bottom:391.530000px;}
.y5e{bottom:394.050000px;}
.yd9{bottom:396.930000px;}
.yf4{bottom:404.670000px;}
.y41{bottom:408.810000px;}
.y1a{bottom:409.710000px;}
.ye6{bottom:411.330000px;}
.y116{bottom:412.770000px;}
.y5d{bottom:414.570000px;}
.yb8{bottom:419.970000px;}
.y74{bottom:420.330000px;}
.y97{bottom:420.690000px;}
.yd8{bottom:425.910000px;}
.y115{bottom:437.070000px;}
.y40{bottom:437.970000px;}
.y19{bottom:438.870000px;}
.ye5{bottom:440.490000px;}
.yb7{bottom:449.130000px;}
.y5c{bottom:449.490000px;}
.y96{bottom:449.670000px;}
.yd7{bottom:455.115000px;}
.yf3{bottom:460.695000px;}
.y114{bottom:465.735000px;}
.y3f{bottom:466.995000px;}
.y18{bottom:468.075000px;}
.ye4{bottom:469.695000px;}
.yb6{bottom:478.335000px;}
.y5b{bottom:478.695000px;}
.yd6{bottom:484.275000px;}
.y95{bottom:487.875000px;}
.y113{bottom:490.035000px;}
.y3e{bottom:496.155000px;}
.ye3{bottom:498.675000px;}
.y17{bottom:506.235000px;}
.yb5{bottom:507.495000px;}
.y5a{bottom:507.675000px;}
.y112{bottom:514.335000px;}
.yd5{bottom:516.675000px;}
.y94{bottom:517.035000px;}
.y130{bottom:518.835000px;}
.y3d{bottom:525.315000px;}
.ye2{bottom:527.835000px;}
.y16{bottom:535.395000px;}
.y59{bottom:536.835000px;}
.yd4{bottom:541.335000px;}
.y111{bottom:543.135000px;}
.yb4{bottom:545.655000px;}
.y93{bottom:546.195000px;}
.y3c{bottom:554.475000px;}
.yf2{bottom:556.995000px;}
.yd3{bottom:561.495000px;}
.y15{bottom:564.555000px;}
.y73{bottom:565.995000px;}
.y110{bottom:567.435000px;}
.y12f{bottom:567.615000px;}
.yb3{bottom:574.815000px;}
.y58{bottom:574.995000px;}
.y92{bottom:575.355000px;}
.yf1{bottom:586.155000px;}
.yd2{bottom:590.835000px;}
.y10f{bottom:591.735000px;}
.y3b{bottom:592.635000px;}
.y14{bottom:593.715000px;}
.y72{bottom:595.155000px;}
.y12e{bottom:600.735000px;}
.yb2{bottom:603.795000px;}
.y57{bottom:604.155000px;}
.y91{bottom:604.515000px;}
.yf0{bottom:615.315000px;}
.y10e{bottom:616.035000px;}
.yd1{bottom:619.995000px;}
.y3a{bottom:621.795000px;}
.y13{bottom:622.875000px;}
.y71{bottom:624.315000px;}
.y12d{bottom:625.035000px;}
.yb1{bottom:632.955000px;}
.y56{bottom:633.315000px;}
.y90{bottom:633.675000px;}
.y10d{bottom:640.335000px;}
.yd0{bottom:644.835000px;}
.y12c{bottom:649.335000px;}
.y39{bottom:650.955000px;}
.y70{bottom:653.475000px;}
.y12{bottom:661.035000px;}
.yb0{bottom:662.115000px;}
.y55{bottom:662.475000px;}
.y8f{bottom:662.835000px;}
.ycf{bottom:664.995000px;}
.y10c{bottom:669.135000px;}
.y12b{bottom:678.135000px;}
.y38{bottom:680.115000px;}
.y6f{bottom:682.665000px;}
.y11{bottom:690.225000px;}
.yaf{bottom:691.305000px;}
.y54{bottom:691.665000px;}
.y8e{bottom:692.025000px;}
.y10b{bottom:693.465000px;}
.yce{bottom:694.365000px;}
.y12a{bottom:702.465000px;}
.y37{bottom:709.305000px;}
.y6e{bottom:711.825000px;}
.y10a{bottom:717.765000px;}
.y10{bottom:719.205000px;}
.yae{bottom:720.465000px;}
.y53{bottom:720.825000px;}
.y8d{bottom:721.185000px;}
.y129{bottom:726.765000px;}
.ycd{bottom:729.465000px;}
.y36{bottom:738.465000px;}
.y6d{bottom:740.985000px;}
.y109{bottom:746.385000px;}
.yf{bottom:748.365000px;}
.yad{bottom:749.625000px;}
.y52{bottom:749.985000px;}
.y8c{bottom:750.165000px;}
.y128{bottom:755.385000px;}
.ycc{bottom:758.445000px;}
.y6c{bottom:769.965000px;}
.y35{bottom:770.685000px;}
.ye{bottom:777.525000px;}
.y51{bottom:778.965000px;}
.y8b{bottom:779.325000px;}
.y127{bottom:779.685000px;}
.yac{bottom:787.785000px;}
.y34{bottom:790.845000px;}
.y108{bottom:794.985000px;}
.ycb{bottom:796.605000px;}
.y6b{bottom:799.125000px;}
.y126{bottom:803.985000px;}
.yd{bottom:806.685000px;}
.y50{bottom:808.125000px;}
.y8a{bottom:811.905000px;}
.yab{bottom:816.945000px;}
.y33{bottom:820.185000px;}
.y107{bottom:823.785000px;}
.yca{bottom:825.765000px;}
.y89{bottom:832.605000px;}
.y125{bottom:832.785000px;}
.yc{bottom:835.845000px;}
.y4f{bottom:837.285000px;}
.y32{bottom:840.345000px;}
.yaa{bottom:846.105000px;}
.y106{bottom:848.085000px;}
.y88{bottom:853.485000px;}
.yc9{bottom:854.925000px;}
.y124{bottom:857.085000px;}
.yb{bottom:865.005000px;}
.y4e{bottom:866.445000px;}
.y105{bottom:872.385000px;}
.y87{bottom:874.005000px;}
.ya9{bottom:875.265000px;}
.y31{bottom:875.445000px;}
.y123{bottom:881.385000px;}
.yc8{bottom:884.085000px;}
.ya{bottom:894.165000px;}
.y86{bottom:894.525000px;}
.y4d{bottom:895.605000px;}
.y104{bottom:901.185000px;}
.ya8{bottom:904.245000px;}
.y30{bottom:904.605000px;}
.y122{bottom:905.685000px;}
.yc7{bottom:913.245000px;}
.y9{bottom:923.370000px;}
.y85{bottom:923.730000px;}
.y4c{bottom:924.810000px;}
.y103{bottom:925.530000px;}
.ya7{bottom:933.450000px;}
.y2f{bottom:933.810000px;}
.y121{bottom:934.530000px;}
.yc6{bottom:942.450000px;}
.y6a{bottom:953.970000px;}
.y102{bottom:954.330000px;}
.y8{bottom:956.670000px;}
.y84{bottom:958.830000px;}
.ya6{bottom:962.610000px;}
.y2e{bottom:962.970000px;}
.yc5{bottom:971.610000px;}
.y101{bottom:978.630000px;}
.y7{bottom:980.970000px;}
.y69{bottom:983.130000px;}
.y83{bottom:987.990000px;}
.ya5{bottom:991.770000px;}
.y2d{bottom:992.130000px;}
.yc4{bottom:1000.770000px;}
.y6{bottom:1005.090000px;}
.y100{bottom:1007.430000px;}
.y120{bottom:1011.930000px;}
.y68{bottom:1012.290000px;}
.y82{bottom:1017.150000px;}
.y2c{bottom:1021.290000px;}
.y5{bottom:1029.390000px;}
.yc3{bottom:1029.750000px;}
.ya4{bottom:1029.930000px;}
.yff{bottom:1036.230000px;}
.y67{bottom:1041.270000px;}
.y81{bottom:1046.130000px;}
.y2b{bottom:1050.270000px;}
.ya3{bottom:1059.090000px;}
.yfe{bottom:1060.350000px;}
.y4{bottom:1062.150000px;}
.y66{bottom:1070.430000px;}
.y80{bottom:1075.290000px;}
.y2a{bottom:1079.430000px;}
.yfd{bottom:1084.650000px;}
.yc2{bottom:1086.810000px;}
.ya2{bottom:1091.310000px;}
.y3{bottom:1102.830000px;}
.y7f{bottom:1104.450000px;}
.y29{bottom:1108.590000px;}
.yc1{bottom:1111.650000px;}
.yfc{bottom:1113.450000px;}
.ya1{bottom:1120.650000px;}
.y28{bottom:1137.750000px;}
.y7e{bottom:1140.810000px;}
.y23{bottom:1181.160000px;}
.y24{bottom:1195.740000px;}
.y4a{bottom:1196.820000px;}
.y26{bottom:1197.720000px;}
.y4b{bottom:1198.800000px;}
.h8{height:22.320000px;}
.h7{height:24.300000px;}
.hc{height:43.594453px;}
.ha{height:52.101562px;}
.h5{height:52.523438px;}
.h2{height:55.266328px;}
.h6{height:55.587305px;}
.hb{height:57.603474px;}
.h9{height:61.259062px;}
.h4{height:66.585938px;}
.hd{height:66.972656px;}
.h3{height:89.073633px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:127.290000px;}
.w2{width:127.296000px;}
.w3{width:637.485000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:10.800000px;}
.x16{left:98.676000px;}
.x13{left:106.056000px;}
.x9{left:107.676000px;}
.x1{left:127.656000px;}
.xe{left:128.736000px;}
.xb{left:154.470000px;}
.x15{left:170.130000px;}
.x8{left:180.750000px;}
.x3{left:245.550000px;}
.x6{left:372.135000px;}
.x4{left:388.335000px;}
.x5{left:392.835000px;}
.x14{left:398.415000px;}
.x7{left:446.655000px;}
.xd{left:519.729000px;}
.x2{left:544.785000px;}
.x11{left:626.505000px;}
.x12{left:635.505000px;}
.xf{left:720.510000px;}
.x10{left:729.510000px;}
.xc{left:765.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.752000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.597333pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.456533pt;}
.ls1e{letter-spacing:-0.322133pt;}
.ls9{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.299733pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.225067pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.122667pt;}
.lsa{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.037120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.074667pt;}
.ls11{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.206720pt;}
.ls1d{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.275200pt;}
.ls1f{letter-spacing:0.317867pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.391040pt;}
.ls20{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls13{letter-spacing:5.760000pt;}
.lsb{letter-spacing:8.320000pt;}
.ls1a{letter-spacing:63.520000pt;}
.ls12{letter-spacing:90.400000pt;}
.ws13{word-spacing:-67.461249pt;}
.ws10{word-spacing:-53.120000pt;}
.ws14{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1f{word-spacing:-15.360000pt;}
.ws1e{word-spacing:-15.296000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.354667pt;}
.ws0{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.242880pt;}
.wse{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.157333pt;}
.ws16{word-spacing:-13.054933pt;}
.ws8{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.823467pt;}
.ws1d{word-spacing:-12.640000pt;}
.ws19{word-spacing:-11.037867pt;}
.ws12{word-spacing:-10.810667pt;}
.ws1b{word-spacing:-10.760320pt;}
.ws9{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.608000pt;}
.wsd{word-spacing:-10.420267pt;}
.ws18{word-spacing:-10.397867pt;}
.ws1c{word-spacing:-10.122667pt;}
.ws11{word-spacing:-9.968000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-0.960000pt;}
._0{width:0.943147pt;}
._3{width:1.976960pt;}
._15{width:2.887040pt;}
._d{width:3.776000pt;}
._e{width:4.800000pt;}
._f{width:5.696000pt;}
._13{width:6.592000pt;}
._1a{width:7.585707pt;}
._5{width:8.704000pt;}
._c{width:9.680853pt;}
._14{width:11.008000pt;}
._1e{width:12.123520pt;}
._8{width:13.056000pt;}
._7{width:14.272000pt;}
._b{width:17.216000pt;}
._19{width:18.282667pt;}
._1f{width:19.264000pt;}
._1c{width:20.629333pt;}
._1b{width:21.674667pt;}
._3f{width:22.698667pt;}
._3a{width:24.128000pt;}
._22{width:25.088000pt;}
._18{width:26.304000pt;}
._17{width:27.456000pt;}
._9{width:28.800000pt;}
._a{width:30.019413pt;}
._28{width:31.228587pt;}
._21{width:32.384000pt;}
._20{width:33.344000pt;}
._27{width:34.304000pt;}
._10{width:35.264000pt;}
._12{width:36.230187pt;}
._11{width:37.130667pt;}
._40{width:38.080000pt;}
._6{width:40.000000pt;}
._41{width:41.472000pt;}
._16{width:43.840000pt;}
._24{width:48.000000pt;}
._23{width:48.896000pt;}
._25{width:58.090667pt;}
._26{width:59.511040pt;}
._38{width:61.631147pt;}
._2a{width:62.752000pt;}
._29{width:63.808000pt;}
._30{width:64.977707pt;}
._31{width:72.430507pt;}
._3e{width:73.650773pt;}
._34{width:74.911147pt;}
._3d{width:80.606080pt;}
._32{width:83.569920pt;}
._2d{width:85.534720pt;}
._39{width:87.186133pt;}
._33{width:89.347200pt;}
._35{width:99.611520pt;}
._3b{width:100.660693pt;}
._37{width:104.445440pt;}
._2c{width:106.039680pt;}
._2f{width:108.480000pt;}
._2b{width:118.281387pt;}
._36{width:119.713067pt;}
._2e{width:120.647040pt;}
._3c{width:131.981227pt;}
._1d{width:175.415467pt;}
._1{width:351.489280pt;}
._2{width:772.119467pt;}
._44{width:1722.598187pt;}
._42{width:1820.565333pt;}
._43{width:1869.973333pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:4.480000pt;}
.y25{bottom:4.960000pt;}
.y2{bottom:83.360000pt;}
.y1{bottom:105.440000pt;}
.y7d{bottom:132.480000pt;}
.ye1{bottom:137.440000pt;}
.yef{bottom:138.880000pt;}
.ya0{bottom:140.480000pt;}
.y22{bottom:151.840000pt;}
.yc0{bottom:158.080000pt;}
.y7c{bottom:158.400000pt;}
.y49{bottom:159.840000pt;}
.y11f{bottom:160.480000pt;}
.yfb{bottom:162.400000pt;}
.ye0{bottom:163.360000pt;}
.yee{bottom:164.960000pt;}
.y9f{bottom:166.400000pt;}
.y65{bottom:174.560000pt;}
.y11e{bottom:182.080000pt;}
.y21{bottom:182.880000pt;}
.ybf{bottom:184.000000pt;}
.y7b{bottom:184.160000pt;}
.y48{bottom:185.760000pt;}
.yed{bottom:186.880000pt;}
.ydf{bottom:189.280000pt;}
.y9e{bottom:195.066667pt;}
.y64{bottom:200.506667pt;}
.yec{bottom:204.826667pt;}
.y11d{bottom:207.706667pt;}
.y20{bottom:208.826667pt;}
.yfa{bottom:209.626667pt;}
.ybe{bottom:209.946667pt;}
.y47{bottom:211.706667pt;}
.yde{bottom:215.226667pt;}
.y7a{bottom:218.106667pt;}
.y9d{bottom:221.146667pt;}
.y63{bottom:226.426667pt;}
.y11c{bottom:229.306667pt;}
.yf9{bottom:231.226667pt;}
.y1f{bottom:234.746667pt;}
.ybd{bottom:235.866667pt;}
.yeb{bottom:236.026667pt;}
.y46{bottom:237.626667pt;}
.y9c{bottom:239.066667pt;}
.ydd{bottom:241.146667pt;}
.y79{bottom:244.026667pt;}
.y11b{bottom:254.906667pt;}
.yf8{bottom:256.826667pt;}
.y62{bottom:258.746667pt;}
.y1e{bottom:260.666667pt;}
.yea{bottom:261.946667pt;}
.y45{bottom:263.546667pt;}
.ydc{bottom:267.066667pt;}
.ybc{bottom:269.786667pt;}
.y78{bottom:269.946667pt;}
.y9b{bottom:270.266667pt;}
.y11a{bottom:276.506667pt;}
.yf7{bottom:278.426667pt;}
.y61{bottom:280.826667pt;}
.y1d{bottom:286.586667pt;}
.ye9{bottom:287.866667pt;}
.y44{bottom:292.186667pt;}
.ydb{bottom:292.986667pt;}
.ybb{bottom:295.546667pt;}
.y77{bottom:295.866667pt;}
.y9a{bottom:296.186667pt;}
.y119{bottom:298.106667pt;}
.y60{bottom:298.906667pt;}
.yf6{bottom:304.026667pt;}
.y1c{bottom:312.506667pt;}
.ye8{bottom:313.786667pt;}
.y43{bottom:314.106667pt;}
.yda{bottom:318.906667pt;}
.yba{bottom:321.466667pt;}
.y76{bottom:321.786667pt;}
.y99{bottom:322.106667pt;}
.y118{bottom:323.706667pt;}
.yf5{bottom:325.626667pt;}
.y5f{bottom:328.346667pt;}
.y42{bottom:332.346667pt;}
.y1b{bottom:338.426667pt;}
.ye7{bottom:339.706667pt;}
.y117{bottom:345.306667pt;}
.yb9{bottom:347.386667pt;}
.y75{bottom:347.706667pt;}
.y98{bottom:348.026667pt;}
.y5e{bottom:350.266667pt;}
.yd9{bottom:352.826667pt;}
.yf4{bottom:359.706667pt;}
.y41{bottom:363.386667pt;}
.y1a{bottom:364.186667pt;}
.ye6{bottom:365.626667pt;}
.y116{bottom:366.906667pt;}
.y5d{bottom:368.506667pt;}
.yb8{bottom:373.306667pt;}
.y74{bottom:373.626667pt;}
.y97{bottom:373.946667pt;}
.yd8{bottom:378.586667pt;}
.y115{bottom:388.506667pt;}
.y40{bottom:389.306667pt;}
.y19{bottom:390.106667pt;}
.ye5{bottom:391.546667pt;}
.yb7{bottom:399.226667pt;}
.y5c{bottom:399.546667pt;}
.y96{bottom:399.706667pt;}
.yd7{bottom:404.546667pt;}
.yf3{bottom:409.506667pt;}
.y114{bottom:413.986667pt;}
.y3f{bottom:415.106667pt;}
.y18{bottom:416.066667pt;}
.ye4{bottom:417.506667pt;}
.yb6{bottom:425.186667pt;}
.y5b{bottom:425.506667pt;}
.yd6{bottom:430.466667pt;}
.y95{bottom:433.666667pt;}
.y113{bottom:435.586667pt;}
.y3e{bottom:441.026667pt;}
.ye3{bottom:443.266667pt;}
.y17{bottom:449.986667pt;}
.yb5{bottom:451.106667pt;}
.y5a{bottom:451.266667pt;}
.y112{bottom:457.186667pt;}
.yd5{bottom:459.266667pt;}
.y94{bottom:459.586667pt;}
.y130{bottom:461.186667pt;}
.y3d{bottom:466.946667pt;}
.ye2{bottom:469.186667pt;}
.y16{bottom:475.906667pt;}
.y59{bottom:477.186667pt;}
.yd4{bottom:481.186667pt;}
.y111{bottom:482.786667pt;}
.yb4{bottom:485.026667pt;}
.y93{bottom:485.506667pt;}
.y3c{bottom:492.866667pt;}
.yf2{bottom:495.106667pt;}
.yd3{bottom:499.106667pt;}
.y15{bottom:501.826667pt;}
.y73{bottom:503.106667pt;}
.y110{bottom:504.386667pt;}
.y12f{bottom:504.546667pt;}
.yb3{bottom:510.946667pt;}
.y58{bottom:511.106667pt;}
.y92{bottom:511.426667pt;}
.yf1{bottom:521.026667pt;}
.yd2{bottom:525.186667pt;}
.y10f{bottom:525.986667pt;}
.y3b{bottom:526.786667pt;}
.y14{bottom:527.746667pt;}
.y72{bottom:529.026667pt;}
.y12e{bottom:533.986667pt;}
.yb2{bottom:536.706667pt;}
.y57{bottom:537.026667pt;}
.y91{bottom:537.346667pt;}
.yf0{bottom:546.946667pt;}
.y10e{bottom:547.586667pt;}
.yd1{bottom:551.106667pt;}
.y3a{bottom:552.706667pt;}
.y13{bottom:553.666667pt;}
.y71{bottom:554.946667pt;}
.y12d{bottom:555.586667pt;}
.yb1{bottom:562.626667pt;}
.y56{bottom:562.946667pt;}
.y90{bottom:563.266667pt;}
.y10d{bottom:569.186667pt;}
.yd0{bottom:573.186667pt;}
.y12c{bottom:577.186667pt;}
.y39{bottom:578.626667pt;}
.y70{bottom:580.866667pt;}
.y12{bottom:587.586667pt;}
.yb0{bottom:588.546667pt;}
.y55{bottom:588.866667pt;}
.y8f{bottom:589.186667pt;}
.ycf{bottom:591.106667pt;}
.y10c{bottom:594.786667pt;}
.y12b{bottom:602.786667pt;}
.y38{bottom:604.546667pt;}
.y6f{bottom:606.813333pt;}
.y11{bottom:613.533333pt;}
.yaf{bottom:614.493333pt;}
.y54{bottom:614.813333pt;}
.y8e{bottom:615.133333pt;}
.y10b{bottom:616.413333pt;}
.yce{bottom:617.213333pt;}
.y12a{bottom:624.413333pt;}
.y37{bottom:630.493333pt;}
.y6e{bottom:632.733333pt;}
.y10a{bottom:638.013333pt;}
.y10{bottom:639.293333pt;}
.yae{bottom:640.413333pt;}
.y53{bottom:640.733333pt;}
.y8d{bottom:641.053333pt;}
.y129{bottom:646.013333pt;}
.ycd{bottom:648.413333pt;}
.y36{bottom:656.413333pt;}
.y6d{bottom:658.653333pt;}
.y109{bottom:663.453333pt;}
.yf{bottom:665.213333pt;}
.yad{bottom:666.333333pt;}
.y52{bottom:666.653333pt;}
.y8c{bottom:666.813333pt;}
.y128{bottom:671.453333pt;}
.ycc{bottom:674.173333pt;}
.y6c{bottom:684.413333pt;}
.y35{bottom:685.053333pt;}
.ye{bottom:691.133333pt;}
.y51{bottom:692.413333pt;}
.y8b{bottom:692.733333pt;}
.y127{bottom:693.053333pt;}
.yac{bottom:700.253333pt;}
.y34{bottom:702.973333pt;}
.y108{bottom:706.653333pt;}
.ycb{bottom:708.093333pt;}
.y6b{bottom:710.333333pt;}
.y126{bottom:714.653333pt;}
.yd{bottom:717.053333pt;}
.y50{bottom:718.333333pt;}
.y8a{bottom:721.693333pt;}
.yab{bottom:726.173333pt;}
.y33{bottom:729.053333pt;}
.y107{bottom:732.253333pt;}
.yca{bottom:734.013333pt;}
.y89{bottom:740.093333pt;}
.y125{bottom:740.253333pt;}
.yc{bottom:742.973333pt;}
.y4f{bottom:744.253333pt;}
.y32{bottom:746.973333pt;}
.yaa{bottom:752.093333pt;}
.y106{bottom:753.853333pt;}
.y88{bottom:758.653333pt;}
.yc9{bottom:759.933333pt;}
.y124{bottom:761.853333pt;}
.yb{bottom:768.893333pt;}
.y4e{bottom:770.173333pt;}
.y105{bottom:775.453333pt;}
.y87{bottom:776.893333pt;}
.ya9{bottom:778.013333pt;}
.y31{bottom:778.173333pt;}
.y123{bottom:783.453333pt;}
.yc8{bottom:785.853333pt;}
.ya{bottom:794.813333pt;}
.y86{bottom:795.133333pt;}
.y4d{bottom:796.093333pt;}
.y104{bottom:801.053333pt;}
.ya8{bottom:803.773333pt;}
.y30{bottom:804.093333pt;}
.y122{bottom:805.053333pt;}
.yc7{bottom:811.773333pt;}
.y9{bottom:820.773333pt;}
.y85{bottom:821.093333pt;}
.y4c{bottom:822.053333pt;}
.y103{bottom:822.693333pt;}
.ya7{bottom:829.733333pt;}
.y2f{bottom:830.053333pt;}
.y121{bottom:830.693333pt;}
.yc6{bottom:837.733333pt;}
.y6a{bottom:847.973333pt;}
.y102{bottom:848.293333pt;}
.y8{bottom:850.373333pt;}
.y84{bottom:852.293333pt;}
.ya6{bottom:855.653333pt;}
.y2e{bottom:855.973333pt;}
.yc5{bottom:863.653333pt;}
.y101{bottom:869.893333pt;}
.y7{bottom:871.973333pt;}
.y69{bottom:873.893333pt;}
.y83{bottom:878.213333pt;}
.ya5{bottom:881.573333pt;}
.y2d{bottom:881.893333pt;}
.yc4{bottom:889.573333pt;}
.y6{bottom:893.413333pt;}
.y100{bottom:895.493333pt;}
.y120{bottom:899.493333pt;}
.y68{bottom:899.813333pt;}
.y82{bottom:904.133333pt;}
.y2c{bottom:907.813333pt;}
.y5{bottom:915.013333pt;}
.yc3{bottom:915.333333pt;}
.ya4{bottom:915.493333pt;}
.yff{bottom:921.093333pt;}
.y67{bottom:925.573333pt;}
.y81{bottom:929.893333pt;}
.y2b{bottom:933.573333pt;}
.ya3{bottom:941.413333pt;}
.yfe{bottom:942.533333pt;}
.y4{bottom:944.133333pt;}
.y66{bottom:951.493333pt;}
.y80{bottom:955.813333pt;}
.y2a{bottom:959.493333pt;}
.yfd{bottom:964.133333pt;}
.yc2{bottom:966.053333pt;}
.ya2{bottom:970.053333pt;}
.y3{bottom:980.293333pt;}
.y7f{bottom:981.733333pt;}
.y29{bottom:985.413333pt;}
.yc1{bottom:988.133333pt;}
.yfc{bottom:989.733333pt;}
.ya1{bottom:996.133333pt;}
.y28{bottom:1011.333333pt;}
.y7e{bottom:1014.053333pt;}
.y23{bottom:1049.920000pt;}
.y24{bottom:1062.880000pt;}
.y4a{bottom:1063.840000pt;}
.y26{bottom:1064.640000pt;}
.y4b{bottom:1065.600000pt;}
.h8{height:19.840000pt;}
.h7{height:21.600000pt;}
.hc{height:38.750625pt;}
.ha{height:46.312500pt;}
.h5{height:46.687500pt;}
.h2{height:49.125625pt;}
.h6{height:49.410937pt;}
.hb{height:51.203088pt;}
.h9{height:54.452500pt;}
.h4{height:59.187500pt;}
.hd{height:59.531250pt;}
.h3{height:79.176563pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:113.146667pt;}
.w2{width:113.152000pt;}
.w3{width:566.653333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.600000pt;}
.x16{left:87.712000pt;}
.x13{left:94.272000pt;}
.x9{left:95.712000pt;}
.x1{left:113.472000pt;}
.xe{left:114.432000pt;}
.xb{left:137.306667pt;}
.x15{left:151.226667pt;}
.x8{left:160.666667pt;}
.x3{left:218.266667pt;}
.x6{left:330.786667pt;}
.x4{left:345.186667pt;}
.x5{left:349.186667pt;}
.x14{left:354.146667pt;}
.x7{left:397.026667pt;}
.xd{left:461.981333pt;}
.x2{left:484.253333pt;}
.x11{left:556.893333pt;}
.x12{left:564.893333pt;}
.xf{left:640.453333pt;}
.x10{left:648.453333pt;}
.xc{left:680.613333pt;}
}

